diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-07-09 23:21:18 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-07-09 23:21:18 +0100 |
commit | fcde38e508cd381ad17e0f73946fa551ac683c81 (patch) | |
tree | 67f1a234760d32a503572929179e2112d79206d9 /src/vga.h | |
parent | d4e9908bf65c080ee2d0e3d143720e0b72bb210d (diff) | |
download | gold-mine-run-fcde38e508cd381ad17e0f73946fa551ac683c81.tar.gz gold-mine-run-fcde38e508cd381ad17e0f73946fa551ac683c81.zip |
Height can be a parameter too
Diffstat (limited to 'src/vga.h')
-rw-r--r-- | src/vga.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -36,7 +36,7 @@ void blit_erase(uint8_t c); /* copy from back buffer to screen */ void blit_copy_all(); void blit_copy(const Rect *dst); -/* only fot 16x16 rects, w and h are ignored */ -void blit_copy16x16(const Rect *dst); +/* only for 16 width, w is ignored */ +void blit_copy16(const Rect *dst); #endif /* _VGA_H */ |