mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-09 18:45:40 +00:00
JitArm64: Add a workaround for issue 12327
This issue is both severe and surprisingly difficult to find the root cause of, so I think it would make sense to add a simple hotfix for now. https://bugs.dolphin-emu.org/issues/12327
This commit is contained in:
parent
9b03cdf93e
commit
d2a34fdab7
@ -594,8 +594,12 @@ void CheckExternalExceptions()
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
DEBUG_ASSERT_MSG(POWERPC, 0, "Unknown EXT interrupt: Exceptions == %08x", exceptions);
|
DEBUG_ASSERT_MSG(POWERPC, 0, "Unknown EXT interrupt: Exceptions == %08x", exceptions);
|
||||||
|
|
||||||
|
// TODO: Re-enable this on ARM64 after fixing https://bugs.dolphin-emu.org/issues/12327
|
||||||
|
#ifndef _M_ARM_64
|
||||||
ERROR_LOG_FMT(POWERPC, "Unknown EXTERNAL INTERRUPT exception: Exceptions == {:08x}",
|
ERROR_LOG_FMT(POWERPC, "Unknown EXTERNAL INTERRUPT exception: Exceptions == {:08x}",
|
||||||
exceptions);
|
exceptions);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user