ACCESS: Martian - Simplify check in takePicture()

This commit is contained in:
Strangerke 2015-11-27 02:05:40 +01:00
parent 279be647da
commit fe916f1794

View File

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