summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcon.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/debug/debugcon.h')
-rw-r--r--src/emu/debug/debugcon.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/debug/debugcon.h b/src/emu/debug/debugcon.h
index d7da48ad77b..c614859f976 100644
--- a/src/emu/debug/debugcon.h
+++ b/src/emu/debug/debugcon.h
@@ -76,7 +76,7 @@ public:
/* command handling */
CMDERR execute_command(const char *command, bool echo);
CMDERR validate_command(const char *command);
- void register_command(const char *command, u32 flags, int ref, int minparams, int maxparams, std::function<void(int, int, const char **)> handler);
+ void register_command(const char *command, u32 flags, int ref, int minparams, int maxparams, std::function<void(int, const std::vector<std::string> &)> handler);
/* console management */
void vprintf(util::format_argument_pack<std::ostream> const &args);
@@ -116,7 +116,7 @@ private:
char command[32];
const char * params;
const char * help;
- std::function<void(int, int, const char **)> handler;
+ std::function<void(int, const std::vector<std::string> &)> handler;
u32 flags;
int ref;
int minparams;