aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sound
diff options
context:
space:
mode:
authorColin Snover2016-06-11 14:49:13 -0500
committerColin Snover2016-06-20 21:02:21 -0500
commitf02107f68237b515e79057f820804ac77f4366ef (patch)
treee329d6ad73fea0f68131de820adbf3a2926af78f /engines/sci/sound
parent46551fd4b53fc8bf4bbdd3a59aeed56f6f9b53e5 (diff)
downloadscummvm-rg350-f02107f68237b515e79057f820804ac77f4366ef.tar.gz
scummvm-rg350-f02107f68237b515e79057f820804ac77f4366ef.tar.bz2
scummvm-rg350-f02107f68237b515e79057f820804ac77f4366ef.zip
SCI: Minor cleanup of kDoSound
Replaces unused kernel calls to use kEmpty, and set correct signatures for SCI32 kernel calls.
Diffstat (limited to 'engines/sci/sound')
-rw-r--r--engines/sci/sound/soundcmd.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/engines/sci/sound/soundcmd.cpp b/engines/sci/sound/soundcmd.cpp
index 7d2ab32c75..c5d8dda56b 100644
--- a/engines/sci/sound/soundcmd.cpp
+++ b/engines/sci/sound/soundcmd.cpp
@@ -225,17 +225,6 @@ void SoundCommandParser::processPlaySound(reg_t obj, bool playBed) {
musicSlot->fadeStep = 0;
}
-reg_t SoundCommandParser::kDoSoundRestore(int argc, reg_t *argv, reg_t acc) {
- // Called after loading, to restore the playlist
- // We don't really use or need this
- return acc;
-}
-
-reg_t SoundCommandParser::kDoSoundDummy(int argc, reg_t *argv, reg_t acc) {
- warning("cmdDummy invoked"); // not supposed to occur
- return acc;
-}
-
reg_t SoundCommandParser::kDoSoundDispose(int argc, reg_t *argv, reg_t acc) {
debugC(kDebugLevelSound, "kDoSound(dispose): %04x:%04x", PRINT_REG(argv[0]));
processDisposeSound(argv[0]);