summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/config.h')
-rw-r--r--src/emu/config.h13
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 */
+};