From f13633ab74994a5a4214d1dcf3db4afcb608d799 Mon Sep 17 00:00:00 2001 From: "fires.gc" Date: Sat, 28 Feb 2009 00:03:29 +0000 Subject: [PATCH] disabled code that i have submitted by accident git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2457 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Src/HLE/HLE_OS.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/Core/Src/HLE/HLE_OS.cpp b/Source/Core/Core/Src/HLE/HLE_OS.cpp index b03bbbe91f..a8974c1912 100644 --- a/Source/Core/Core/Src/HLE/HLE_OS.cpp +++ b/Source/Core/Core/Src/HLE/HLE_OS.cpp @@ -49,7 +49,7 @@ void HLE_OSReport() u32 hackPC = PC; PC = LR; - PanicAlert("(PC=%08x) OSReport: %s", LR, ReportMessage.c_str()); +// PanicAlert("(PC=%08x) OSReport: %s", LR, ReportMessage.c_str()); LOGV(OSREPORT,0,"(PC=%08x) OSReport: %s", LR, ReportMessage.c_str()); PC = hackPC; @@ -64,7 +64,7 @@ void HLE_vprintf() u32 hackPC = PC; PC = LR; - PanicAlert("(PC=%08x) VPrintf: %s", LR, ReportMessage.c_str()); + // PanicAlert("(PC=%08x) VPrintf: %s", LR, ReportMessage.c_str()); LOG(OSREPORT,"(PC=%08x) VPrintf: %s", LR, ReportMessage.c_str()); PC = hackPC; @@ -79,7 +79,7 @@ void HLE_printf() u32 hackPC = PC; PC = LR; - PanicAlert("(PC=%08x) Printf: %s ", LR, ReportMessage.c_str()); + // PanicAlert("(PC=%08x) Printf: %s ", LR, ReportMessage.c_str()); LOG(OSREPORT,"(PC=%08x) Printf: %s ", LR, ReportMessage.c_str()); PC = hackPC;