diff options
Diffstat (limited to 'src/emu/debug/debugcon.h')
-rw-r--r-- | src/emu/debug/debugcon.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/debug/debugcon.h b/src/emu/debug/debugcon.h index e6e5145119a..7a06c68c5f1 100644 --- a/src/emu/debug/debugcon.h +++ b/src/emu/debug/debugcon.h @@ -67,7 +67,7 @@ ***************************************************************************/ /* CMDERR is an error code for command evaluation */ -typedef UINT32 CMDERR; +typedef uint32_t CMDERR; class debugger_console { @@ -77,7 +77,7 @@ public: /* command handling */ CMDERR execute_command(const char *command, bool echo); CMDERR validate_command(const char *command); - void register_command(const char *command, UINT32 flags, int ref, int minparams, int maxparams, std::function<void(int, int, const char **)> handler); + void register_command(const char *command, uint32_t flags, int ref, int minparams, int maxparams, std::function<void(int, int, const char **)> handler); /* console management */ void vprintf(util::format_argument_pack<std::ostream> const &args); @@ -118,7 +118,7 @@ private: const char * params; const char * help; std::function<void(int, int, const char **)> handler; - UINT32 flags; + uint32_t flags; int ref; int minparams; int maxparams; |