diff options
| author | athrxx | 2019-03-26 22:37:50 +0100 |
|---|---|---|
| committer | athrxx | 2019-04-13 18:55:01 +0200 |
| commit | 69f2e0caaa3b7257318f2e9943d233da45bfab80 (patch) | |
| tree | 4fbd19a73fd00d6bac849185388f76b32ab986fe /engines/kyra/script | |
| parent | cbe81aa021bab1082ee6a652cbd15fe323ea2069 (diff) | |
| download | scummvm-rg350-69f2e0caaa3b7257318f2e9943d233da45bfab80.tar.gz scummvm-rg350-69f2e0caaa3b7257318f2e9943d233da45bfab80.tar.bz2 scummvm-rg350-69f2e0caaa3b7257318f2e9943d233da45bfab80.zip | |
KYRA: (EOB2/Amiga) - fix ingame colors
Diffstat (limited to 'engines/kyra/script')
| -rw-r--r-- | engines/kyra/script/script_eob.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/kyra/script/script_eob.cpp b/engines/kyra/script/script_eob.cpp index b063b08a6e..1c96a53498 100644 --- a/engines/kyra/script/script_eob.cpp +++ b/engines/kyra/script/script_eob.cpp @@ -1319,6 +1319,9 @@ int EoBInfProcessor::oeob_loadNewLevelOrMonsters(int8 *data) { _vm->gui_drawAllCharPortraitsWithStats(); _subroutineStackPos = 0; + if (_vm->_flags.gameID == GI_EOB2 && _vm->_flags.platform == Common::kPlatformAmiga) + _vm->gui_restorePlayField(); + } else { cmd = *pos++; _vm->releaseMonsterShapes(cmd * 18, 18); |
