aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Hesse2011-08-26 08:11:24 +0200
committerSven Hesse2011-08-26 08:11:24 +0200
commit6a9271b6cf2c8b4d67e0f8b94d569890b5002752 (patch)
tree98ff75bde1a01b3c4075d614e52322a528685de9
parenta3bc17296b61448fa247a012d0c4013a32928118 (diff)
downloadscummvm-rg350-6a9271b6cf2c8b4d67e0f8b94d569890b5002752.tar.gz
scummvm-rg350-6a9271b6cf2c8b4d67e0f8b94d569890b5002752.tar.bz2
scummvm-rg350-6a9271b6cf2c8b4d67e0f8b94d569890b5002752.zip
GOB: Oops, don't skip vital parts of the script
The paramater count is already read in oGeisha_goblinFunc...
-rw-r--r--engines/gob/inter_geisha.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/engines/gob/inter_geisha.cpp b/engines/gob/inter_geisha.cpp
index d4f92d9574..b3a7be2003 100644
--- a/engines/gob/inter_geisha.cpp
+++ b/engines/gob/inter_geisha.cpp
@@ -108,23 +108,17 @@ int16 Inter_Geisha::loadSound(int16 slot) {
}
void Inter_Geisha::oGeisha_loadTitleMusic(OpGobParams &params) {
- _vm->_game->_script->skip(2);
-
_vm->_sound->adlibLoadTBR("geisha.tbr");
_vm->_sound->adlibLoadMDY("geisha.mdy");
}
void Inter_Geisha::oGeisha_playMusic(OpGobParams &params) {
- _vm->_game->_script->skip(2);
-
// TODO: The MDYPlayer is still broken!
warning("Geisha Stub: oGeisha_playMusic");
// _vm->_sound->adlibPlay();
}
void Inter_Geisha::oGeisha_stopMusic(OpGobParams &params) {
- _vm->_game->_script->skip(2);
-
_vm->_sound->adlibStop();
_vm->_sound->adlibUnload();
}