From 2e60e19a37d5247a8cb6c9f8233b242868e9efb7 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Tue, 18 Oct 2005 19:59:51 +0000 Subject: Some fixes: - added support for an external data file for all the resources from the original binary - fixed a typo with malco(l)m - added support for spanish floppy - changes support for unknown languages a bit - some other cleanups svn-id: r19161 --- kyra/screen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kyra/screen.cpp') diff --git a/kyra/screen.cpp b/kyra/screen.cpp index cf524f9bb9..7af494c376 100644 --- a/kyra/screen.cpp +++ b/kyra/screen.cpp @@ -438,7 +438,7 @@ void Screen::printText(const char *str, int x, int y, uint8 color1, uint8 color2 } } -void Screen::drawChar(char c, int x, int y) { +void Screen::drawChar(uint8 c, int x, int y) { debug(9, "Screen::drawChar('%c', %d, %d)", c, x, y); Font *fnt = &_fonts[_currentFont]; uint8 *dst = getPagePtr(_curPage) + y * SCREEN_W + x; -- cgit v1.2.3