Merge pull request #9618 from JosJuice/jitarm64-pc-0

JitArm64: Allow DoJit at address 0 (fix launching Wii titles)
This commit is contained in:
Markus Wick 2021-04-01 12:43:23 +02:00 committed by GitHub
commit a2fa9aab5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 6 deletions

View File

@ -623,12 +623,6 @@ void JitArm64::Jit(u32)
void JitArm64::DoJit(u32 em_address, JitBlock* b, u32 nextPC)
{
if (em_address == 0)
{
Core::SetState(Core::State::Paused);
WARN_LOG_FMT(DYNA_REC, "ERROR: Compiling at 0. LR={:08x} CTR={:08x}", LR, CTR);
}
js.isLastInstruction = false;
js.firstFPInstructionFound = false;
js.assumeNoPairedQuantize = false;