diff options
-rw-r--r-- | engines/toltecs/screen.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/toltecs/screen.cpp b/engines/toltecs/screen.cpp index 1abb057d4f..6ac916e24c 100644 --- a/engines/toltecs/screen.cpp +++ b/engines/toltecs/screen.cpp @@ -617,10 +617,11 @@ void Screen::drawChar(const Font &font, byte *dest, int16 x, int16 y, byte ch, b int16 charWidth, charHeight; byte *charData; - dest += x + (y * 640); + dest += x + y * 640; charWidth = font.getCharWidth(ch); - charHeight = font.getHeight() - 2; + //charHeight = font.getHeight() - 2;//Why was this here?! + charHeight = font.getHeight(); charData = font.getCharData(ch); while (charHeight--) { |