From 51efdd70e49a1378cc828113a3ee3997f85cdc14 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Thu, 2 Oct 2008 18:46:11 +0000 Subject: Split out high-level sound code from hexen/i_ibm.c and refactor to use common interface. Subversion-branch: /branches/raven-branch Subversion-revision: 1324 --- src/doom/sounds.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/doom/sounds.c') diff --git a/src/doom/sounds.c b/src/doom/sounds.c index 55bda724..adfb2189 100644 --- a/src/doom/sounds.c +++ b/src/doom/sounds.c @@ -117,9 +117,9 @@ musicinfo_t S_music[] = // #define SOUND(name, priority) \ - { name, priority, NULL, -1, -1, 0, 0, -1, NULL } + { NULL, name, priority, NULL, -1, -1, 0, 0, -1, NULL } #define SOUND_LINK(name, priority, link_id, pitch, volume) \ - { name, priority, &S_sfx[link_id], pitch, volume, 0, 0, -1, NULL } + { NULL, name, priority, &S_sfx[link_id], pitch, volume, 0, 0, -1, NULL } sfxinfo_t S_sfx[] = { -- cgit v1.2.3