From dacc0a19a76f829f07faa9b956526db9ca92d5a3 Mon Sep 17 00:00:00 2001 From: Shawn Hoffman Date: Mon, 25 Jan 2010 15:55:58 +0000 Subject: [PATCH] ...comment out some PanicAlerts added in last commit that people will probably find annoying git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4959 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Src/HW/DSP.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/Src/HW/DSP.cpp b/Source/Core/Core/Src/HW/DSP.cpp index 11e69d47d5..53e8008dea 100644 --- a/Source/Core/Core/Src/HW/DSP.cpp +++ b/Source/Core/Core/Src/HW/DSP.cpp @@ -310,7 +310,7 @@ void Read16(u16& _uReturnValue, const u32 _iAddress) // ARAM case AR_INFO: - PanicAlert("read %x %x", g_ARAM_Info.Hex,PowerPC::ppcState.pc); + //PanicAlert("read %x %x", g_ARAM_Info.Hex,PowerPC::ppcState.pc); _uReturnValue = g_ARAM_Info.Hex; break; @@ -421,7 +421,7 @@ void Write16(const u16 _Value, const u32 _Address) // ARAM // DMA back and forth between ARAM and RAM case AR_INFO: - PanicAlert("write %x %x", _Value,PowerPC::ppcState.pc); + //PanicAlert("write %x %x", _Value,PowerPC::ppcState.pc); g_ARAM_Info.Hex = _Value; // __OSInitAudioSystem sets to 0x43 -> expects 16bit adressing and mapping to dsp iram? // __OSCheckSize sets = 0x20 | 3 (keeps upper bits)