mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
PowerPC: Remove PC macro.
This commit is contained in:
@ -473,7 +473,7 @@ bool CBoot::Load_BS2(Core::System& system, const std::string& boot_rom_filename)
|
||||
PowerPC::ppcState.spr[SPR_DBAT3L] = 0xfff00001;
|
||||
SetupBAT(/*is_wii*/ false);
|
||||
|
||||
PC = 0x81200150;
|
||||
PowerPC::ppcState.pc = 0x81200150;
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -572,7 +572,7 @@ bool CBoot::BootUp(Core::System& system, std::unique_ptr<BootParameters> boot)
|
||||
|
||||
SConfig::OnNewTitleLoad();
|
||||
|
||||
PC = executable.reader->GetEntryPoint();
|
||||
PowerPC::ppcState.pc = executable.reader->GetEntryPoint();
|
||||
|
||||
if (executable.reader->LoadSymbols())
|
||||
{
|
||||
|
Reference in New Issue
Block a user