diff options
author | 2007-12-17 16:37:57 +0000 | |
---|---|---|
committer | 2007-12-17 16:37:57 +0000 | |
commit | c82a966b3b72d79ac3ce394980d6b5806e752160 (patch) | |
tree | f46dd63acdd83498db10a0563bb4e874df26d903 /src/emu/config.h | |
parent | 8a8ccc594989d85f2277c48d3c158f7cee41d06b (diff) |
Changes for MAME 0.121u2.mame0121u2
Diffstat (limited to 'src/emu/config.h')
-rw-r--r-- | src/emu/config.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/emu/config.h b/src/emu/config.h index 31411684419..6460e4ae9eb 100644 --- a/src/emu/config.h +++ b/src/emu/config.h @@ -26,11 +26,14 @@ * *************************************/ -#define CONFIG_TYPE_INIT 0 /* opportunity to initialize things first */ -#define CONFIG_TYPE_CONTROLLER 1 /* loading from controller file */ -#define CONFIG_TYPE_DEFAULT 2 /* loading from default.cfg */ -#define CONFIG_TYPE_GAME 3 /* loading from game.cfg */ -#define CONFIG_TYPE_FINAL 4 /* opportunity to finish initialization */ +enum +{ + CONFIG_TYPE_INIT = 0, /* opportunity to initialize things first */ + CONFIG_TYPE_CONTROLLER, /* loading from controller file */ + CONFIG_TYPE_DEFAULT, /* loading from default.cfg */ + CONFIG_TYPE_GAME, /* loading from game.cfg */ + CONFIG_TYPE_FINAL /* opportunity to finish initialization */ +}; |