diff options
author | Simon Howard | 2008-10-02 18:46:11 +0000 |
---|---|---|
committer | Simon Howard | 2008-10-02 18:46:11 +0000 |
commit | 51efdd70e49a1378cc828113a3ee3997f85cdc14 (patch) | |
tree | cb360022a6f6564d9243e3e72de76a71740f3701 /src/heretic | |
parent | 525e8d80dfd67d4562b7a4d40e685a26b860eada (diff) | |
download | chocolate-doom-51efdd70e49a1378cc828113a3ee3997f85cdc14.tar.gz chocolate-doom-51efdd70e49a1378cc828113a3ee3997f85cdc14.tar.bz2 chocolate-doom-51efdd70e49a1378cc828113a3ee3997f85cdc14.zip |
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
Diffstat (limited to 'src/heretic')
-rw-r--r-- | src/heretic/sounds.c | 4 |
1 files changed, 2 insertions, 2 deletions
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), |