aboutsummaryrefslogtreecommitdiff
path: root/kyra/screen.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2005-10-18 19:59:51 +0000
committerJohannes Schickel2005-10-18 19:59:51 +0000
commit2e60e19a37d5247a8cb6c9f8233b242868e9efb7 (patch)
tree73f705c585fa7a93003f78da9bef31612284bad2 /kyra/screen.cpp
parenta38bc21581abedbeb30f371ed079c85cefa98596 (diff)
downloadscummvm-rg350-2e60e19a37d5247a8cb6c9f8233b242868e9efb7.tar.gz
scummvm-rg350-2e60e19a37d5247a8cb6c9f8233b242868e9efb7.tar.bz2
scummvm-rg350-2e60e19a37d5247a8cb6c9f8233b242868e9efb7.zip
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
Diffstat (limited to 'kyra/screen.cpp')
-rw-r--r--kyra/screen.cpp2
1 files changed, 1 insertions, 1 deletions
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;