diff options
author | Max Horn | 2009-03-01 06:02:42 +0000 |
---|---|---|
committer | Max Horn | 2009-03-01 06:02:42 +0000 |
commit | d0c477e9305c8b4ff66077233a8a494d9ede4c75 (patch) | |
tree | 77d992c053a084cf480fc0e4cfe3e308f9dba724 /engines/sci/sfx/mixer.h | |
parent | 4e0ee7abea422b844b11143c94cea88b309e0c68 (diff) | |
download | scummvm-rg350-d0c477e9305c8b4ff66077233a8a494d9ede4c75.tar.gz scummvm-rg350-d0c477e9305c8b4ff66077233a8a494d9ede4c75.tar.bz2 scummvm-rg350-d0c477e9305c8b4ff66077233a8a494d9ede4c75.zip |
SCI: Removed unused pause/resume methods from the mixer, and rewrote the feeds handling to use Common::List
svn-id: r39009
Diffstat (limited to 'engines/sci/sfx/mixer.h')
-rw-r--r-- | engines/sci/sfx/mixer.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/engines/sci/sfx/mixer.h b/engines/sci/sfx/mixer.h index 1f619245fe..c68fc29936 100644 --- a/engines/sci/sfx/mixer.h +++ b/engines/sci/sfx/mixer.h @@ -56,14 +56,6 @@ struct sfx_pcm_mixer_t { ** (sfx_pcm_feed_t *) feed: The feed to subscribe to */ - void (*pause)(sfx_pcm_mixer_t *self); - /* Pauses the processing of input and output - */ - - void (*resume)(sfx_pcm_mixer_t *self); - /* Resumes the processing of input and output after a pause - */ - int (*process)(sfx_pcm_mixer_t *self); /* Processes all feeds, mixes their results, and passes everything to the output device ** Returns : (int) SFX_OK on success, SFX_ERROR otherwise (output device error or |