summaryrefslogtreecommitdiff
path: root/src/heretic/info.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/info.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/info.h')
-rw-r--r--src/heretic/info.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/heretic/info.h b/src/heretic/info.h
index 95adef0e..0a27657b 100644
--- a/src/heretic/info.h
+++ b/src/heretic/info.h
@@ -1368,11 +1368,11 @@ typedef enum
typedef struct
{
spritenum_t sprite;
- long frame;
- long tics;
+ int frame;
+ int tics;
void (*action) ();
statenum_t nextstate;
- long misc1, misc2;
+ int misc1, misc2;
} state_t;
extern state_t states[NUMSTATES];