[Scummvm-cvs-logs] SF.net SVN: scummvm: [26136] scummvm/trunk/engines/sky/control.cpp
fingolfin at users.sourceforge.net
fingolfin at users.sourceforge.net
Wed Mar 14 21:19:00 CET 2007
Revision: 26136
http://scummvm.svn.sourceforge.net/scummvm/?rev=26136&view=rev
Author: fingolfin
Date: 2007-03-14 13:18:59 -0700 (Wed, 14 Mar 2007)
Log Message:
-----------
Fixed bug #1507835 (BASS: Control panel text differences from the original)
Modified Paths:
--------------
scummvm/trunk/engines/sky/control.cpp
Modified: scummvm/trunk/engines/sky/control.cpp
===================================================================
--- scummvm/trunk/engines/sky/control.cpp 2007-03-14 19:32:21 UTC (rev 26135)
+++ scummvm/trunk/engines/sky/control.cpp 2007-03-14 20:18:59 UTC (rev 26136)
@@ -438,7 +438,7 @@
_savedMouse = _skyMouse->giveCurrentMouseType();
_savedCharSet = _skyText->giveCurrentCharSet();
- _skyText->fnSetFont(0);
+ _skyText->fnSetFont(1);
_skyMouse->spriteMouse(MOUSE_NORMAL, 0, 0);
_lastButton = -1;
_curButtonText = 0;
@@ -463,7 +463,7 @@
initPanel();
_savedCharSet = _skyText->giveCurrentCharSet();
- _skyText->fnSetFont(0);
+ _skyText->fnSetFont(1);
_skyScreen->clearScreen();
if (SkyEngine::_systemVars.gameVersion < 331)
@@ -1487,7 +1487,7 @@
_mouseClicked = false;
_savedCharSet = _skyText->giveCurrentCharSet();
- _skyText->fnSetFont(0);
+ _skyText->fnSetFont(1);
_system->copyRectToScreen(_screenBuf, GAME_SCREEN_WIDTH, 0, 0, FULL_SCREEN_WIDTH, FULL_SCREEN_HEIGHT);
_system->updateScreen();
@@ -1604,7 +1604,7 @@
void Control::showGameQuitMsg(void) {
- _skyText->fnSetFont(0);
+ _skyText->fnSetFont(1);
uint8 *textBuf1 = (uint8 *)malloc(GAME_SCREEN_WIDTH * 14 + sizeof(dataFileHeader));
uint8 *textBuf2 = (uint8 *)malloc(GAME_SCREEN_WIDTH * 14 + sizeof(dataFileHeader));
uint8 *screenData;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list