summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/sounds.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/sounds.h')
-rw-r--r--apps/plugins/doom/sounds.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/apps/plugins/doom/sounds.h b/apps/plugins/doom/sounds.h
index bf1004cda9..a5f6fc53ee 100644
--- a/apps/plugins/doom/sounds.h
+++ b/apps/plugins/doom/sounds.h
@@ -102,7 +102,7 @@ extern musicinfo_t S_music[];
102// Identifiers for all music in game. 102// Identifiers for all music in game.
103// 103//
104 104
105typedef enum { 105enum {
106 mus_None, 106 mus_None,
107 mus_e1m1, 107 mus_e1m1,
108 mus_e1m2, 108 mus_e1m2,
@@ -172,13 +172,14 @@ typedef enum {
172 mus_dm2ttl, 172 mus_dm2ttl,
173 mus_dm2int, 173 mus_dm2int,
174 NUMMUSIC 174 NUMMUSIC
175} musicenum_t; 175};
176typedef unsigned musicenum_t;
176 177
177// 178//
178// Identifiers for all sfx in game. 179// Identifiers for all sfx in game.
179// 180//
180 181
181typedef enum { 182enum {
182 sfx_None, 183 sfx_None,
183 sfx_pistol, 184 sfx_pistol,
184 sfx_shotgn, 185 sfx_shotgn,
@@ -299,6 +300,7 @@ typedef enum {
299#endif 300#endif
300 301
301 NUMSFX 302 NUMSFX
302} sfxenum_t; 303};
304typedef unsigned sfxenum_t;
303 305
304#endif 306#endif