diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/access/room.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/access/room.cpp b/engines/access/room.cpp index c91b37c65d..d0f1e59569 100644 --- a/engines/access/room.cpp +++ b/engines/access/room.cpp @@ -111,8 +111,7 @@ void Room::takePicture() { return; } - // TODO: simplify the second part of the test when tested - if ((_vm->_scrollCol < 35) || ((_vm->_scrollRow >= 10) && (_vm->_scrollRow >= 20))){ + if ((_vm->_scrollCol < 35) || (_vm->_scrollRow >= 20)){ Common::String msg = "THAT ISN'T INTERESTING ENOUGH TO WASTE FILM ON."; _vm->_scripts->doCmdPrint_v1(msg); return; |