From 2a31661d836d24f567275bb66e6222f1ca0455f7 Mon Sep 17 00:00:00 2001 From: Stanislav Shwartsman Date: Sun, 9 Oct 2011 08:20:32 +0000 Subject: [PATCH] change beep messages to BX_DEBUG - it is flooding log too much when playing old MSDOS games --- bochs/gui/gui.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bochs/gui/gui.cc b/bochs/gui/gui.cc index e573d5129..1308ecba0 100644 --- a/bochs/gui/gui.cc +++ b/bochs/gui/gui.cc @@ -737,12 +737,12 @@ void bx_gui_c::set_text_charbyte(Bit16u address, Bit8u data) void bx_gui_c::beep_on(float frequency) { - BX_INFO(("GUI Beep ON (frequency=%.2f)", frequency)); + BX_DEBUG(("GUI Beep ON (frequency=%.2f)", frequency)); } void bx_gui_c::beep_off() { - BX_INFO(("GUI Beep OFF")); + BX_DEBUG(("GUI Beep OFF")); } int bx_gui_c::register_statusitem(const char *text)