diff options
-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(); } |