diff options
author | D G Turner | 2011-12-07 16:40:57 +0000 |
---|---|---|
committer | D G Turner | 2011-12-07 16:40:57 +0000 |
commit | 39f2b24f11a2b2fa47b583aef2547ab4a0b4291b (patch) | |
tree | a2bf66de16cf4008c8427722d563c6a163c400d8 /engines/dreamweb/stubs.cpp | |
parent | b017c9317b054c8f6cc2258f581ba30c0caf131a (diff) | |
download | scummvm-rg350-39f2b24f11a2b2fa47b583aef2547ab4a0b4291b.tar.gz scummvm-rg350-39f2b24f11a2b2fa47b583aef2547ab4a0b4291b.tar.bz2 scummvm-rg350-39f2b24f11a2b2fa47b583aef2547ab4a0b4291b.zip |
DREAMWEB: Remove now unused sound interrupt related functions.
All are empty and unused, except for soundStartup() which was called
but was empty and soundCheckInt which unconditionally set kTestResult
to 1 (assumed to be "Test Pass"), but this value is not used anywhere
and the function was not called anyway, so safe to remove.
Diffstat (limited to 'engines/dreamweb/stubs.cpp')
-rw-r--r-- | engines/dreamweb/stubs.cpp | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/engines/dreamweb/stubs.cpp b/engines/dreamweb/stubs.cpp index da02360e55..75adc72c44 100644 --- a/engines/dreamweb/stubs.cpp +++ b/engines/dreamweb/stubs.cpp @@ -472,7 +472,7 @@ void DreamGenContext::dreamweb() { } seeCommandTail(); - soundStartup(); + // soundStartup used to be done here... setKeyboardInt(); allocateBuffers(); setMouse(); @@ -1063,15 +1063,6 @@ void DreamGenContext::deallocateMem(uint16 segment) { } } -void DreamGenContext::soundStartup() {} -void DreamGenContext::soundEnd() {} -void DreamGenContext::interruptTest() {} -void DreamGenContext::disableSoundInt() {} -void DreamGenContext::enableSoundInt() {} -void DreamGenContext::checkSoundInt() { - data.byte(kTestresult) = 1; -} - void DreamGenContext::loadSpeech() { cancelCh1(); data.byte(kSpeechloaded) = 0; |