From 490ed5ce9b8f27412f8e69c7b0c47b106e75b632 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Tue, 17 Mar 2015 15:48:28 +0100 Subject: [PATCH] disabled additional logging of popmessage() messages (nw) --- src/emu/mame.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/emu/mame.c b/src/emu/mame.c index 9511df4e9df..3d8380d8666 100644 --- a/src/emu/mame.c +++ b/src/emu/mame.c @@ -287,6 +287,7 @@ void CLIB_DECL popmessage(const char *format, ...) // pop it in the UI machine_manager::instance()->machine()->ui().popup_time(temp.len() / 40 + 2, "%s", temp.cstr()); + /* // also write to error.log logerror("popmessage: %s\n", temp.cstr()); @@ -294,6 +295,7 @@ void CLIB_DECL popmessage(const char *format, ...) // and to command-line in a DEBUG build osd_printf_info("popmessage: %s\n", temp.cstr()); #endif + */ } }