diff options
| author | Sven Hesse | 2011-08-26 08:11:24 +0200 |
|---|---|---|
| committer | Sven Hesse | 2011-08-26 08:11:24 +0200 |
| commit | 6a9271b6cf2c8b4d67e0f8b94d569890b5002752 (patch) | |
| tree | 98ff75bde1a01b3c4075d614e52322a528685de9 /engines/gob | |
| parent | a3bc17296b61448fa247a012d0c4013a32928118 (diff) | |
| download | scummvm-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...
Diffstat (limited to 'engines/gob')
| -rw-r--r-- | engines/gob/inter_geisha.cpp | 6 |
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 ¶ms) { - _vm->_game->_script->skip(2); - _vm->_sound->adlibLoadTBR("geisha.tbr"); _vm->_sound->adlibLoadMDY("geisha.mdy"); } void Inter_Geisha::oGeisha_playMusic(OpGobParams ¶ms) { - _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 ¶ms) { - _vm->_game->_script->skip(2); - _vm->_sound->adlibStop(); _vm->_sound->adlibUnload(); } |
