diff options
author | athrxx | 2019-02-18 00:17:28 +0100 |
---|---|---|
committer | athrxx | 2019-03-06 20:48:22 +0100 |
commit | e907965d81456c1612777499d52b253cbd7c059d (patch) | |
tree | c5146833accb6a004ea1c2f2598245c4c3ded22f /engines/kyra/resource | |
parent | 1cedb61c8ccd9f30372452c7b0f01cf0dab25157 (diff) | |
download | scummvm-rg350-e907965d81456c1612777499d52b253cbd7c059d.tar.gz scummvm-rg350-e907965d81456c1612777499d52b253cbd7c059d.tar.bz2 scummvm-rg350-e907965d81456c1612777499d52b253cbd7c059d.zip |
KYRA: (EOB1/Amiga) - fix main menu load dialog
Diffstat (limited to 'engines/kyra/resource')
-rw-r--r-- | engines/kyra/resource/staticres_eob.cpp | 19 | ||||
-rw-r--r-- | engines/kyra/resource/staticres_lol.cpp | 2 |
2 files changed, 13 insertions, 8 deletions
diff --git a/engines/kyra/resource/staticres_eob.cpp b/engines/kyra/resource/staticres_eob.cpp index ed2f36895e..281cb7f6db 100644 --- a/engines/kyra/resource/staticres_eob.cpp +++ b/engines/kyra/resource/staticres_eob.cpp @@ -804,8 +804,8 @@ void EoBCoreEngine::initMenus() { if (_flags.platform == Common::kPlatformAmiga) { // assign Amiga text colors - _menuDefs[0].titleCol = _menuDefs[1].titleCol = _menuDefs[2].titleCol = _menuDefs[4].titleCol = _menuDefs[6].titleCol = guiSettings()->colors.menuTxtColLightBlue; - _menuDefs[3].titleCol = _menuDefs[5].titleCol = guiSettings()->colors.menuTxtColWhite; + _menuDefs[0].titleCol = _menuDefs[1].titleCol = _menuDefs[2].titleCol = _menuDefs[4].titleCol = _menuDefs[6].titleCol = guiSettings()->colors.guiColorLightBlue; + _menuDefs[3].titleCol = _menuDefs[5].titleCol = guiSettings()->colors.guiColorWhite; } } @@ -1290,17 +1290,22 @@ void EoBEngine::initSpells() { const KyraRpgGUISettings EoBEngine::_guiSettingsVGA = { { 9, 15, 95, 9, 7, { 285, 139 }, { 189, 162 }, { 31, 31 } }, - { 135, 130, 132, 180, 133, 17, 23, 20, 184, 177, 180, 184, 177, 180, 15, 6, 8, 9, 2, 12 } + { 135, 130, 132, 180, 133, 17, 23, 20, 184, 177, 180, 184, 177, 180, 15, 6, 8, 9, 2, 5, 4, 3, 12 } }; const KyraRpgGUISettings EoBEngine::_guiSettingsEGA = { { 9, 15, 95, 9, 7, { 285, 139 }, { 189, 162 }, { 31, 31 } }, - { 13, 9, 2, 14, 2, 6, 13, 8, 13, 15, 14, 13, 15, 14, 15, 6, 8, 9, 2, 12 } + { 13, 9, 2, 14, 2, 6, 13, 8, 13, 15, 14, 13, 15, 14, 15, 6, 8, 9, 2, 5, 4, 3, 12 } }; const KyraRpgGUISettings EoBEngine::_guiSettingsAmiga = { { 28, 31, 95, 9, 7, { 285, 139 }, { 189, 162 }, { 31, 31 } }, - { 18, 17, 10, 17, 11, 24, 22, 25, 18, 9, 10, 18, 9, 10, 31, 24, 25, 28, 29, 19 } + { 18, 17, 10, 17, 11, 24, 22, 25, 18, 9, 10, 18, 9, 10, 31, 24, 25, 28, 29, 7, 26, 27, 19 } +}; + +const KyraRpgGUISettings EoBEngine::_guiSettingsAmigaMainMenu = { + { 28, 31, 95, 9, 7, { 285, 139 }, { 189, 162 }, { 31, 31 } }, + { 22, 28, 30, 17, 11, 24, 22, 25, 18, 9, 10, 18, 9, 10, 31, 24, 25, 28, 29, 7, 26, 27, 19 } }; const uint8 EoBEngine::_egaDefaultPalette[] = { @@ -1401,12 +1406,12 @@ void DarkMoonEngine::initSpells() { const KyraRpgGUISettings DarkMoonEngine::_guiSettingsFMTowns = { { 9, 15, 95, 11, 7, { 221, 76 }, { 187, 162 }, { 95, 95 } }, - { 186, 181, 183, 183, 184, 17, 23, 20, 186, 181, 183, 182, 177, 180, 15, 6, 8, 9, 2, 12 } + { 186, 181, 183, 183, 184, 17, 23, 20, 186, 181, 183, 182, 177, 180, 15, 6, 8, 9, 2, 5, 4, 3, 12 } }; const KyraRpgGUISettings DarkMoonEngine::_guiSettingsDOS = { { 9, 15, 95, 9, 7, { 221, 76 }, { 189, 162 }, { 95, 95 } }, - { 186, 181, 183, 183, 184, 17, 23, 20, 186, 181, 183, 182, 177, 180, 15, 6, 8, 9, 2, 12 } + { 186, 181, 183, 183, 184, 17, 23, 20, 186, 181, 183, 182, 177, 180, 15, 6, 8, 9, 2, 5, 4, 3, 12 } }; const uint8 DarkMoonEngine::_egaDefaultPalette[] = { diff --git a/engines/kyra/resource/staticres_lol.cpp b/engines/kyra/resource/staticres_lol.cpp index d2fbcef16f..24076aaef7 100644 --- a/engines/kyra/resource/staticres_lol.cpp +++ b/engines/kyra/resource/staticres_lol.cpp @@ -779,7 +779,7 @@ const int8 LoLEngine::_mapCoords[12][4] = { const KyraRpgGUISettings LoLEngine::_guiSettings = { { 144, 254, 74, 9, 80, { 0, 0 }, { 0, 0 }, { 0, 0 } }, - { 136, 251, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } + { 136, 251, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } }; const MistOfDoomAnimData LoLEngine::_mistAnimData[] = { |