summaryrefslogtreecommitdiff
path: root/src/i_sound.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/i_sound.h')
-rw-r--r--src/i_sound.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/i_sound.h b/src/i_sound.h
index 2740c1d9..6737e8cb 100644
--- a/src/i_sound.h
+++ b/src/i_sound.h
@@ -53,9 +53,6 @@ struct sfxinfo_struct
// volume if a link
int volume;
- // sound data
- void *data;
-
// this is checked every second to see if sound
// can be thrown out (if 0, then decrement, if -1,
// then throw out, if > 0, then it is in use)
@@ -64,6 +61,10 @@ struct sfxinfo_struct
// lump number of sfx
int lumpnum;
+ // Maximum number of channels that the sound can be played on
+ // (Heretic)
+ int numchannels;
+
// data used by the low level code
void *driver_data;
};