summaryrefslogtreecommitdiff
path: root/src/heretic/sounds.h
diff options
context:
space:
mode:
authorSimon Howard2008-09-24 18:19:42 +0000
committerSimon Howard2008-09-24 18:19:42 +0000
commit9c707d58e5004fad1540c7d05bdda54773d5ed71 (patch)
tree6d556f4cf671f3ee71f770217e40db76041871cd /src/heretic/sounds.h
parentcb74057b461e6649c00c216a9b67c6ded683eb21 (diff)
downloadchocolate-doom-9c707d58e5004fad1540c7d05bdda54773d5ed71.tar.gz
chocolate-doom-9c707d58e5004fad1540c7d05bdda54773d5ed71.tar.bz2
chocolate-doom-9c707d58e5004fad1540c7d05bdda54773d5ed71.zip
Replace all occurrences of long with int in the Heretic code.
Subversion-branch: /branches/raven-branch Subversion-revision: 1270
Diffstat (limited to 'src/heretic/sounds.h')
-rw-r--r--src/heretic/sounds.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/heretic/sounds.h b/src/heretic/sounds.h
index 67cc377c..685bfa61 100644
--- a/src/heretic/sounds.h
+++ b/src/heretic/sounds.h
@@ -115,15 +115,15 @@ typedef struct sfxinfo_s
typedef struct
{
mobj_t *mo;
- long sound_id;
- long handle;
- long pitch;
+ int sound_id;
+ int handle;
+ int pitch;
int priority;
} channel_t;
typedef struct
{
- long id;
+ int id;
unsigned short priority;
char *name;
mobj_t *mo;