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/heretic/sounds.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/heretic/sounds.c') diff --git a/src/heretic/sounds.c b/src/heretic/sounds.c index 38c39210..ba4cee0b 100644 --- a/src/heretic/sounds.c +++ b/src/heretic/sounds.c @@ -103,9 +103,9 @@ musicinfo_t S_music[] = { */ #define SOUND(name, priority, numchannels) \ - { name, priority, NULL, -1, -1, -1, 0, numchannels, NULL } + { NULL, name, priority, NULL, -1, -1, -1, 0, numchannels, NULL } #define SOUND_LINK(name, link_id, priority, numchannels) \ - { name, priority, &S_sfx[link_id], 0, 0, -1, 0, numchannels, NULL } + { NULL, name, priority, &S_sfx[link_id], 0, 0, -1, 0, numchannels, NULL } sfxinfo_t S_sfx[] = { SOUND("", 0, 0), -- cgit v1.2.3