diff options
Diffstat (limited to 'src/doom')
-rw-r--r-- | src/doom/deh_sound.c | 1 | ||||
-rw-r--r-- | src/doom/sounds.c | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/doom/deh_sound.c b/src/doom/deh_sound.c index 90b7725b..251cdccb 100644 --- a/src/doom/deh_sound.c +++ b/src/doom/deh_sound.c @@ -98,7 +98,6 @@ static void DEH_SoundParseLine(deh_context_t *context, char *line, void *tag) // Set the field value DEH_SetMapping(context, &sound_mapping, sfx, variable_name, ivalue); - } deh_section_t deh_section_sound = 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[] = { |