diff options
author | Paul Gilbert | 2013-10-05 11:28:03 -0400 |
---|---|---|
committer | Paul Gilbert | 2013-10-05 11:28:03 -0400 |
commit | 227682816b7d57a56b67240f135adfdb9241d990 (patch) | |
tree | 67113c6287e7adf9f51f49eb2c9daf7e445ecb28 /engines | |
parent | 6b496c9e66b67e7d50c4736258540062629ebd82 (diff) | |
download | scummvm-rg350-227682816b7d57a56b67240f135adfdb9241d990.tar.gz scummvm-rg350-227682816b7d57a56b67240f135adfdb9241d990.tar.bz2 scummvm-rg350-227682816b7d57a56b67240f135adfdb9241d990.zip |
TSAGE: Bugfix for rotating suits in R2R storage room
Diffstat (limited to 'engines')
-rw-r--r-- | engines/tsage/ringworld2/ringworld2_scenes0.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/tsage/ringworld2/ringworld2_scenes0.cpp b/engines/tsage/ringworld2/ringworld2_scenes0.cpp index e32ec848a4..643f60dafc 100644 --- a/engines/tsage/ringworld2/ringworld2_scenes0.cpp +++ b/engines/tsage/ringworld2/ringworld2_scenes0.cpp @@ -5197,8 +5197,9 @@ void Scene500::PanelDialog::Button::doButtonPress() { switch (_buttonId) { case 1: + // Rotate Left if (--R2_GLOBALS._landerSuitNumber == 0) - R2_GLOBALS._landerSuitNumber = 3; + R2_GLOBALS._landerSuitNumber = R2_MIRANDA; if (R2_GLOBALS.getFlag(35)) { scene->_sceneMode = 5; @@ -5211,8 +5212,9 @@ void Scene500::PanelDialog::Button::doButtonPress() { break; case 2: + // Rotate Right if (++R2_GLOBALS._landerSuitNumber == 4) - R2_GLOBALS._flubMazeArea = 1; + R2_GLOBALS._landerSuitNumber = R2_QUINN; if (R2_GLOBALS.getFlag(35)) { scene->_sceneMode = 6; |