mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-04 01:46:42 +00:00
ACCESS: Martian - Simplify check in takePicture()
This commit is contained in:
parent
279be647da
commit
fe916f1794
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user