From 1f4764ad1c6a4ef2d4c2a2697572f692957bbc02 Mon Sep 17 00:00:00 2001 From: Benjamin Haisch Date: Mon, 15 Dec 2008 08:04:06 +0000 Subject: TOLTECS: - Implemented RTL - Fixed return values in savegame/loadgame - Some minor cleanup --- engines/toltecs/screen.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'engines/toltecs/screen.cpp') diff --git a/engines/toltecs/screen.cpp b/engines/toltecs/screen.cpp index d70cda3351..363a6f20d4 100644 --- a/engines/toltecs/screen.cpp +++ b/engines/toltecs/screen.cpp @@ -125,7 +125,6 @@ void Screen::loadMouseCursor(uint resIndex) { *mouseCursorP++ = pixel; } } - //CursorMan.replaceCursor((const byte*)mouseCursor, 16, 16, 0, 0, 0); // FIXME: Where's the cursor hotspot? Using 8, 8 seems good enough for now. CursorMan.replaceCursor((const byte*)mouseCursor, 16, 16, 8, 8, 0); } @@ -540,7 +539,7 @@ void Screen::drawGuiTextMulti(byte *textData) { wrapState.sourceString += 4; } else if (*wrapState.sourceString == 0x0B) { // Inc text position - y += wrapState.sourceString[1]; // CHECKME: Maybe these are signed? + y += wrapState.sourceString[1]; x += wrapState.sourceString[2]; wrapState.sourceString += 3; } else { -- cgit v1.2.3