summaryrefslogtreecommitdiff
path: root/src/hexen/info.h
diff options
context:
space:
mode:
authorSimon Howard2009-01-27 21:33:32 +0000
committerSimon Howard2009-01-27 21:33:32 +0000
commit1f19598df064341e8e92b70e466ca8b9f373b4a6 (patch)
tree87fa6a9b554a8f597392b5b560ff43ef0cf9af72 /src/hexen/info.h
parent5460b512935e840ea369335cc83ec895ba63e071 (diff)
downloadchocolate-doom-1f19598df064341e8e92b70e466ca8b9f373b4a6.tar.gz
chocolate-doom-1f19598df064341e8e92b70e466ca8b9f373b4a6.tar.bz2
chocolate-doom-1f19598df064341e8e92b70e466ca8b9f373b4a6.zip
long -> int
Subversion-branch: /branches/raven-branch Subversion-revision: 1433
Diffstat (limited to 'src/hexen/info.h')
-rw-r--r--src/hexen/info.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/hexen/info.h b/src/hexen/info.h
index bacce7e8..6ad2975e 100644
--- a/src/hexen/info.h
+++ b/src/hexen/info.h
@@ -3182,11 +3182,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];