diff options
author | Max Horn | 2007-03-14 20:18:59 +0000 |
---|---|---|
committer | Max Horn | 2007-03-14 20:18:59 +0000 |
commit | f86ca1803bfe16cfb02d8787040843a0499b89cf (patch) | |
tree | 25d327f7d948441538c8216efc6df832f9b763ca | |
parent | ce5a9c9edb9adbfea06ba2b41938b33c9e032e72 (diff) | |
download | scummvm-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
-rw-r--r-- | engines/sky/control.cpp | 8 |
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; |