SCUMM: Fix Bug #6711- Wrong quit message shown in Pajama Sam Lost and Found.

This commit is contained in:
Kirben 2014-08-20 08:36:40 +10:00
parent 6642f6df9e
commit 7761c75c31

View File

@ -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);