aboutsummaryrefslogtreecommitdiff
path: root/scumm/sound.h
diff options
context:
space:
mode:
authorMax Horn2003-07-31 20:24:10 +0000
committerMax Horn2003-07-31 20:24:10 +0000
commit0b4e48b59e18865ddd7785594def2aba872a0258 (patch)
treec805a6ad957aa329de69f3073f65864ee2d6ef5e /scumm/sound.h
parentd8494d658b25d65eee1856d127a8ad5e20155bbe (diff)
downloadscummvm-rg350-0b4e48b59e18865ddd7785594def2aba872a0258.tar.gz
scummvm-rg350-0b4e48b59e18865ddd7785594def2aba872a0258.tar.bz2
scummvm-rg350-0b4e48b59e18865ddd7785594def2aba872a0258.zip
revamped MP3/Vorbis CD 'emulation' code to use a PlayingSoundHandle -> this allows to finally get rid of the hackish isChannelActive/isChannelUsed methods in SoundMixer
svn-id: r9346
Diffstat (limited to 'scumm/sound.h')
-rw-r--r--scumm/sound.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/sound.h b/scumm/sound.h
index 1bb765770c..8e9183659b 100644
--- a/scumm/sound.h
+++ b/scumm/sound.h
@@ -87,11 +87,11 @@ protected:
int _cached_tracks[CACHE_TRACKS];
struct {
- int index;
+ PlayingSoundHandle handle;
int track;
int start;
int duration;
- int num_loops;
+ int numLoops;
bool playing;
} _dig_cd;