TSAGE: R2R: Don't allow F8 to start credits when they're already on

This commit is contained in:
Paul Gilbert 2017-02-21 21:21:32 -05:00
parent 1a25abbd73
commit 902ce47c05

View File

@ -1228,7 +1228,8 @@ void Ringworld2Game::processEvent(Event &event) {
case Common::KEYCODE_F8:
// F8 - Credits
R2_GLOBALS._sceneManager.changeScene(205);
if (R2_GLOBALS._sceneManager._sceneNumber != 205)
R2_GLOBALS._sceneManager.changeScene(205);
break;
case Common::KEYCODE_F10: