summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/rockmacros.h
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2006-04-08 22:53:26 +0000
committerDave Chapman <dave@dchapman.com>2006-04-08 22:53:26 +0000
commit2ee282396f8cf740db8b3d513f2826503ed2cb00 (patch)
tree36b8e0d510e9d0658e5c40117e32288dd0cbe382 /apps/plugins/doom/rockmacros.h
parent3817a3ecc4ee657f1a38bb3c39f53a345ded04cc (diff)
downloadrockbox-2ee282396f8cf740db8b3d513f2826503ed2cb00.tar.gz
rockbox-2ee282396f8cf740db8b3d513f2826503ed2cb00.zip
Add a simple header and version number to the default.dfg config file
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9570 a1c6a512-1295-4272-9138-f99709370657
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