bring cd_file in line with the new sound api

This commit is contained in:
Bill Currie 2007-03-18 12:54:59 +00:00 committed by Jeff Teunissen
parent a3ceb050a2
commit d67cbeae7f
7 changed files with 33 additions and 20 deletions

View file

@ -53,6 +53,7 @@ typedef void (*P_S_BlockSound) (void);
typedef void (*P_S_UnblockSound) (void);
typedef struct sfx_s *(*P_S_LoadSound) (const char *name);
typedef struct channel_s *(*P_S_AllocChannel) (void);
typedef void (*P_S_ChannelStop) (struct channel_s *chan);
typedef struct snd_render_funcs_s {
P_S_AmbientOff pS_AmbientOff;
@ -70,6 +71,7 @@ typedef struct snd_render_funcs_s {
P_S_UnblockSound pS_UnblockSound;
P_S_LoadSound pS_LoadSound;
P_S_AllocChannel pS_AllocChannel;
P_S_ChannelStop pS_ChannelStop;
} snd_render_funcs_t;
typedef struct snd_render_data_s {