diff options
author | Strangerke | 2014-02-09 00:50:41 +0100 |
---|---|---|
committer | Strangerke | 2014-02-09 00:50:41 +0100 |
commit | fd576f1e94b35327d1d2b8a122e24f8d9aa6c8a7 (patch) | |
tree | ee12f788eb9a68a8049c995e043327209ec88fd2 | |
parent | b75da52cabd70ad89456e75e160e5b91ea3ac1e7 (diff) | |
download | scummvm-rg350-fd576f1e94b35327d1d2b8a122e24f8d9aa6c8a7.tar.gz scummvm-rg350-fd576f1e94b35327d1d2b8a122e24f8d9aa6c8a7.tar.bz2 scummvm-rg350-fd576f1e94b35327d1d2b8a122e24f8d9aa6c8a7.zip |
TSAGE: R2R - Fix issue in ScannerDialog
-rw-r--r-- | engines/tsage/ringworld2/ringworld2_logic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tsage/ringworld2/ringworld2_logic.cpp b/engines/tsage/ringworld2/ringworld2_logic.cpp index e81fce681c..c67e5c18c2 100644 --- a/engines/tsage/ringworld2/ringworld2_logic.cpp +++ b/engines/tsage/ringworld2/ringworld2_logic.cpp @@ -2334,7 +2334,7 @@ void ScannerDialog::Button::reset() { case 1800: if (R2_GLOBALS._rimLocation < 1201) scanner._obj4.setup(4, 3, 3); - else if (R2_GLOBALS._rimLocation < 1201) + else if (R2_GLOBALS._rimLocation > 1201) scanner._obj4.setup(4, 3, 4); else scanner._obj4.setup(4, 3, 5); |