summaryrefslogtreecommitdiffstats
path: root/src/emu/debug/debugcmd.h
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2022-02-28 18:22:07 -0500
committer AJR <ajrhacker@users.noreply.github.com>2022-02-28 18:22:07 -0500
commit19397f4903fda22c7f64306cdab6865017825bce (patch)
treecb85b8a2ad5a16e1121da877229040ac8fb2e8b6 /src/emu/debug/debugcmd.h
parent74eb8b853791e07a7c8505a93f8fc8adf14984a2 (diff)
debugcmd.cpp: Modernize implementation details of mini_printf
Diffstat (limited to 'src/emu/debug/debugcmd.h')
-rw-r--r--src/emu/debug/debugcmd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcmd.h b/src/emu/debug/debugcmd.h
index fd0bcea673a..b50c07bd634 100644
--- a/src/emu/debug/debugcmd.h
+++ b/src/emu/debug/debugcmd.h
@@ -99,7 +99,7 @@ private:
u64 global_get(global_entry *global);
void global_set(global_entry *global, u64 value);
- int mini_printf(char *buffer, const char *format, int params, u64 *param);
+ bool mini_printf(std::ostream &stream, std::string_view format, int params, u64 *param);
template <typename T>
void execute_index_command(std::vector<std::string> const &params, T &&apply, char const *unused_message);