SCUMM: Fix Bug #6711- Wrong quit message shown in Pajama Sam Lost and Found.
This commit is contained in:
parent
6642f6df9e
commit
7761c75c31
1 changed files with 3 additions and 1 deletions
|
@ -428,7 +428,9 @@ const Common::String InfoDialog::queryResString(int stringno) {
|
||||||
if (stringno == 0)
|
if (stringno == 0)
|
||||||
return String();
|
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;
|
result = (const byte *)string_map_table_v8[stringno - 1].string;
|
||||||
else if (_vm->_game.version == 7)
|
else if (_vm->_game.version == 7)
|
||||||
result = _vm->getStringAddressVar(string_map_table_v7[stringno - 1].num);
|
result = _vm->getStringAddressVar(string_map_table_v7[stringno - 1].num);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue