diff options
Diffstat (limited to 'engines/mohawk/riven_stacks/ospit.cpp')
-rw-r--r-- | engines/mohawk/riven_stacks/ospit.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/mohawk/riven_stacks/ospit.cpp b/engines/mohawk/riven_stacks/ospit.cpp index beecc05ab9..d939beacba 100644 --- a/engines/mohawk/riven_stacks/ospit.cpp +++ b/engines/mohawk/riven_stacks/ospit.cpp @@ -60,11 +60,11 @@ void OSpit::xorollcredittime(const ArgumentArray &args) { uint32 gehnState = _vm->_vars["agehn"]; if (gehnState == 0) // Gehn who? - runEndGame(1, 9500); + runEndGame(1, 9500, 1225); else if (gehnState == 4) // You freed him? Are you kidding me? - runEndGame(2, 12000); + runEndGame(2, 12000, 558); else // You already spoke with Gehn. What were you thinking? - runEndGame(3, 8000); + runEndGame(3, 8000, 857); } void OSpit::xbookclick(const ArgumentArray &args) { @@ -143,7 +143,7 @@ void OSpit::xbookclick(const ArgumentArray &args) { // Run the credits from here. if (_vm->_vars["agehn"] == 3) { _vm->_scriptMan->stopAllScripts(); - runCredits(args[0], 5000); + runCredits(args[0], 5000, 0); return; } |