diff options
author | Strangerke | 2015-11-27 02:05:40 +0100 |
---|---|---|
committer | Strangerke | 2015-11-27 02:05:40 +0100 |
commit | fe916f17941ecb383d9f19c7fc046af3816cd73f (patch) | |
tree | 21e1d45a9640e253d18b85d98e393d80a6a5d2b5 /engines | |
parent | 279be647daa1f96a5efc443ef1aa4441d03a6b3a (diff) | |
download | scummvm-rg350-fe916f17941ecb383d9f19c7fc046af3816cd73f.tar.gz scummvm-rg350-fe916f17941ecb383d9f19c7fc046af3816cd73f.tar.bz2 scummvm-rg350-fe916f17941ecb383d9f19c7fc046af3816cd73f.zip |
ACCESS: Martian - Simplify check in takePicture()
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; |