diff options
author | Travis Howell | 2003-08-17 08:00:26 +0000 |
---|---|---|
committer | Travis Howell | 2003-08-17 08:00:26 +0000 |
commit | be2e79624719a20a72f3d650115c6365d3753841 (patch) | |
tree | 00981b6908bcb31736dca928abbbb19e90523539 /scumm | |
parent | bbbca4f8fe7ec7174709c1361103fcc05f92d8f3 (diff) | |
download | scummvm-rg350-be2e79624719a20a72f3d650115c6365d3753841.tar.gz scummvm-rg350-be2e79624719a20a72f3d650115c6365d3753841.tar.bz2 scummvm-rg350-be2e79624719a20a72f3d650115c6365d3753841.zip |
OOps
svn-id: r9735
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/script_v5.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp index b3f8458121..7b9bad67fd 100644 --- a/scumm/script_v5.cpp +++ b/scumm/script_v5.cpp @@ -1462,7 +1462,7 @@ void Scumm_v5::o5_putActorInRoom() { a = derefActor(act, "o5_putActorInRoom"); - if (_gameId & GID_MONKEY_EGA) { + if (_gameId == GID_MONKEY_EGA || _gameId == GID_MONKEY_VGA) { if (room == 0 && a->room != _currentRoom && a->room != room && _currentRoom != room) { warning ("o5_putActorInRoom (%d [%d], %d) ignored", act, a->room, room); return; |