summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/rockmacros.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/rockmacros.h')
-rw-r--r--apps/plugins/doom/rockmacros.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/plugins/doom/rockmacros.h b/apps/plugins/doom/rockmacros.h
index 8f028d4893..047fa24bf9 100644
--- a/apps/plugins/doom/rockmacros.h
+++ b/apps/plugins/doom/rockmacros.h
@@ -91,4 +91,13 @@ inline void* memcpy(void* dst, const void* src, size_t size);
91#define NO_PREDEFINED_LUMPS 91#define NO_PREDEFINED_LUMPS
92#define TABLES_AS_LUMPS // This frees up alot of space in the plugin buffer 92#define TABLES_AS_LUMPS // This frees up alot of space in the plugin buffer
93//#define FANCY_MENU // This is a call to allow load_main_backdrop to run in doom 93//#define FANCY_MENU // This is a call to allow load_main_backdrop to run in doom
94
95#define MAKE_FOURCC(a,b,c,d) (uint32_t)((((a)<<24)|((b)<<16)|((c)<<8)|(d)))
96
97/* Config file magic - increment the version number whenever the settings
98 structure changes.
99 */
100#define DOOM_CONFIG_MAGIC MAKE_FOURCC('D','O','O','M')
101#define DOOM_CONFIG_VERSION 1
102
94#endif 103#endif