just some code cleanings

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@8 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
fires.gc
2008-07-15 11:53:41 +00:00
parent 050c472b38
commit 982586cdc6
10 changed files with 100 additions and 90 deletions

View File

@ -288,7 +288,7 @@ bool CBoot::EmulatedBIOS_Wii(bool _bDebug)
for (int i=0x3000; i<=0x3038; i+=4)
{
Memory::Write_U32(0x00000000, i);
}
}
// app
VolumeHandler::ReadToPtr(Memory::GetPointer(0x3180), 0, 4);
@ -296,7 +296,7 @@ bool CBoot::EmulatedBIOS_Wii(bool _bDebug)
}
// apploader
if (VolumeHandler::IsValid())
if (VolumeHandler::IsValid())
{
UReg_MSR& m_MSR = ((UReg_MSR&)PowerPC::ppcState.msr);
m_MSR.FP = 1;

View File

@ -141,4 +141,6 @@ bool SCoreStartupParameter::AutoSetup(EBootBios _BootBios)
m_strMemoryCardA = BaseDataPath + "/MemoryCardA.raw";
m_strMemoryCardB = BaseDataPath + "/MemoryCardB.raw";
m_strSRAM = BaseDataPath + "/SRAM.raw";
return true;
}