aboutsummaryrefslogtreecommitdiff
path: root/engines/sky
diff options
context:
space:
mode:
authorMax Horn2007-03-14 20:18:59 +0000
committerMax Horn2007-03-14 20:18:59 +0000
commitf86ca1803bfe16cfb02d8787040843a0499b89cf (patch)
tree25d327f7d948441538c8216efc6df832f9b763ca /engines/sky
parentce5a9c9edb9adbfea06ba2b41938b33c9e032e72 (diff)
downloadscummvm-rg350-f86ca1803bfe16cfb02d8787040843a0499b89cf.tar.gz
scummvm-rg350-f86ca1803bfe16cfb02d8787040843a0499b89cf.tar.bz2
scummvm-rg350-f86ca1803bfe16cfb02d8787040843a0499b89cf.zip
Fixed bug #1507835 (BASS: Control panel text differences from the original)
svn-id: r26136
Diffstat (limited to 'engines/sky')
-rw-r--r--engines/sky/control.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/sky/control.cpp b/engines/sky/control.cpp
index 76b15c4cbc..bd51fdf9dc 100644
--- a/engines/sky/control.cpp
+++ b/engines/sky/control.cpp
@@ -438,7 +438,7 @@ void Control::doLoadSavePanel(void) {
_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 @@ void Control::doControlPanel(void) {
initPanel();
_savedCharSet = _skyText->giveCurrentCharSet();
- _skyText->fnSetFont(0);
+ _skyText->fnSetFont(1);
_skyScreen->clearScreen();
if (SkyEngine::_systemVars.gameVersion < 331)
@@ -1487,7 +1487,7 @@ uint16 Control::quickXRestore(uint16 slot) {
_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::delay(unsigned int amount) {
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;