diff options
Diffstat (limited to 'src/include/pc80')
-rw-r--r-- | src/include/pc80/vga.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/pc80/vga.h b/src/include/pc80/vga.h index ec012f5bdf..7a97afe5e5 100644 --- a/src/include/pc80/vga.h +++ b/src/include/pc80/vga.h @@ -33,6 +33,7 @@ void vga_line_write(unsigned int line, const char *string); * vga_write_text() writes a line of text aligned left/center/right * horizontally on the screen (i.e. enum VGA_TEXT_ALIGNMENT) */ -void vga_write_text(enum VGA_TEXT_ALIGNMENT alignment, unsigned int line, const char *string); +void vga_write_text(enum VGA_TEXT_ALIGNMENT alignment, unsigned int line, + const unsigned char *ustring); #endif /* VGA_H */ |