summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/doomstat.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/doomstat.h')
-rw-r--r--apps/plugins/doom/doomstat.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/plugins/doom/doomstat.h b/apps/plugins/doom/doomstat.h
index 5a5a87c3c5..a89a4e547f 100644
--- a/apps/plugins/doom/doomstat.h
+++ b/apps/plugins/doom/doomstat.h
@@ -52,14 +52,15 @@ extern boolean fastparm; // checkparm of -fast
52 52
53extern boolean devparm; // DEBUG: launched with -devparm 53extern boolean devparm; // DEBUG: launched with -devparm
54 54
55enum automapmode_e { 55enum {
56 am_active = 1, // currently shown 56 am_active = 1, // currently shown
57 am_overlay= 2, // covers the screen, i.e. not overlay mode 57 am_overlay= 2, // covers the screen, i.e. not overlay mode
58 am_rotate = 4, // rotates to the player facing direction 58 am_rotate = 4, // rotates to the player facing direction
59 am_follow = 8, // keep the player centred 59 am_follow = 8, // keep the player centred
60 am_grid =16, // show grid 60 am_grid =16, // show grid
61}; 61};
62extern enum automapmode_e automapmode; // Mode that the automap is in 62typedef int automapmode_e;
63extern automapmode_e automapmode; // Mode that the automap is in
63 64
64// ----------------------------------------------------- 65// -----------------------------------------------------
65// Game Mode - identify IWAD as shareware, retail etc. 66// Game Mode - identify IWAD as shareware, retail etc.