diff options
| author | 2016-01-02 09:22:12 -0500 | |
|---|---|---|
| committer | 2016-01-02 09:40:15 -0500 | |
| commit | 3e6c0d3434026ed5e434c2781fc0f4f530127428 (patch) | |
| tree | ca9140670bf7c043d5ca347420ddce8f5611c43d /src/osd/osdcore.cpp | |
| parent | d74d1febc442ce42c5e0df5bf77ba53100e4d8d5 (diff) | |
Allow mame -validate -verbose to capture verbose messages
Diffstat (limited to 'src/osd/osdcore.cpp')
| -rw-r--r-- | src/osd/osdcore.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/osd/osdcore.cpp b/src/osd/osdcore.cpp index 91ba3fc4266..632124e2e7c 100644 --- a/src/osd/osdcore.cpp +++ b/src/osd/osdcore.cpp @@ -3,8 +3,6 @@ #include "osdcore.h" -bool g_print_verbose = false; - static const int MAXSTACK = 10; static osd_output *m_stack[MAXSTACK]; static int m_ptr = -1; @@ -104,10 +102,6 @@ void CLIB_DECL osd_printf_verbose(const char *format, ...) { va_list argptr; - /* if we're not verbose, skip it */ - if (!g_print_verbose) - return; - /* do the output */ va_start(argptr, format); if (m_ptr >= 0) m_stack[m_ptr]->output_callback(OSD_OUTPUT_CHANNEL_VERBOSE, format, argptr); |
