mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 23:31:57 +00:00
SCUMM: Fix Bug #6711- Wrong quit message shown in Pajama Sam Lost and Found.
This commit is contained in:
parent
6642f6df9e
commit
7761c75c31
@ -428,7 +428,9 @@ const Common::String InfoDialog::queryResString(int stringno) {
|
||||
if (stringno == 0)
|
||||
return String();
|
||||
|
||||
if (_vm->_game.version == 8)
|
||||
if (_vm->_game.heversion >= 80)
|
||||
return _(string_map_table_v6[stringno - 1].string);
|
||||
else if (_vm->_game.version == 8)
|
||||
result = (const byte *)string_map_table_v8[stringno - 1].string;
|
||||
else if (_vm->_game.version == 7)
|
||||
result = _vm->getStringAddressVar(string_map_table_v7[stringno - 1].num);
|
||||
|
Loading…
x
Reference in New Issue
Block a user