summaryrefslogtreecommitdiff
path: root/src/info.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/info.h')
-rw-r--r--src/info.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/info.h b/src/info.h
index d2093977..f94af13f 100644
--- a/src/info.h
+++ b/src/info.h
@@ -1151,20 +1151,19 @@ typedef enum
typedef struct
{
- spritenum_t sprite;
- long frame;
- long tics;
- // void (*action) ();
- actionf_t action;
- statenum_t nextstate;
- long misc1, misc2;
+ spritenum_t sprite;
+ int frame;
+ int tics;
+ // void (*action) ();
+ actionf_t action;
+ statenum_t nextstate;
+ int misc1;
+ int misc2;
} state_t;
extern state_t states[NUMSTATES];
extern char *sprnames[];
-
-
typedef enum {
MT_PLAYER,
MT_POSSESSED,