From f474788e01fff02610af66203f4f0fa5c4f045d7 Mon Sep 17 00:00:00 2001 From: Shawn Hoffman Date: Tue, 6 Oct 2009 23:14:21 +0000 Subject: [PATCH] remove some "debug" stuff left in there from last commit... git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4368 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Src/Boot/Boot_BIOSEmu.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Core/Core/Src/Boot/Boot_BIOSEmu.cpp b/Source/Core/Core/Src/Boot/Boot_BIOSEmu.cpp index 716f441f4a..46b57cd067 100644 --- a/Source/Core/Core/Src/Boot/Boot_BIOSEmu.cpp +++ b/Source/Core/Core/Src/Boot/Boot_BIOSEmu.cpp @@ -87,14 +87,12 @@ void CBoot::EmulatedBIOS(bool _bDebug) if (SConfig::GetInstance().m_LocalCoreStartupParameter.bNTSC) { - DEBUG_LOG(MASTER_LOG, "Call bNTSC"); PowerPC::ppcState.gpr[1] = 0x81566550; // StackPointer, used to be set to 0x816ffff0 PowerPC::ppcState.gpr[2] = 0x81465cc0; // global pointer to Small Data Area 2 Base (haven't seen anything use it...meh) PowerPC::ppcState.gpr[13] = 0x81465320; // global pointer to Small Data Area Base (Luigi's Mansion's apploader uses it) } else { - DEBUG_LOG(MASTER_LOG, "Call PAL"); PowerPC::ppcState.gpr[1] = 0x815edca8; PowerPC::ppcState.gpr[2] = 0x814b5b20; PowerPC::ppcState.gpr[13] = 0x814b4fc0;