diff options
author | athrxx | 2013-01-09 21:17:42 +0100 |
---|---|---|
committer | athrxx | 2013-01-09 21:18:56 +0100 |
commit | f72d36f0cac16caff90fa16f1dfd40ead69a9551 (patch) | |
tree | 0b2cc16cddfefbaefddb4b10078900bc904d9045 | |
parent | 36cc94ab73e6bc23ec904bede7dae768dd9f28b2 (diff) | |
download | scummvm-rg350-f72d36f0cac16caff90fa16f1dfd40ead69a9551.tar.gz scummvm-rg350-f72d36f0cac16caff90fa16f1dfd40ead69a9551.tar.bz2 scummvm-rg350-f72d36f0cac16caff90fa16f1dfd40ead69a9551.zip |
KYRA: (LOL) - remove unneeded static data
-rw-r--r-- | engines/kyra/lol.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/engines/kyra/lol.cpp b/engines/kyra/lol.cpp index f4c069b144..f7696d45b5 100644 --- a/engines/kyra/lol.cpp +++ b/engines/kyra/lol.cpp @@ -690,13 +690,6 @@ int LoLEngine::mainMenu() { { 0x2C, 0x19, 0x48, 0x2C }, Screen::FID_9_FNT, 1 }, - // 256 color SJIS mode - { - { 0, 0, 0, 0, 0 }, - { 0x01, 0x04, 0x0C, 0x04, 0x00, 0x3D, 0x9F }, - { 0x2C, 0x19, 0x48, 0x2C }, - Screen::FID_9_FNT, 1 - }, // 16 color SJIS mode { { 0, 0, 0, 0, 0 }, @@ -706,7 +699,7 @@ int LoLEngine::mainMenu() { } }; - int dataIndex = (_flags.lang == Common::JA_JPN) ? (_flags.use16ColorMode ? 2 : 1) : 0; + int dataIndex = _flags.use16ColorMode ? 1 : 0; if (!_flags.isTalkie) --data[dataIndex].menuTable[3]; |