mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-01 12:32:48 +00:00
Merge pull request #5031 from lioncash/cast
CachedInterpreter: Get rid of an unnecessary cast
This commit is contained in:
commit
52f22e240b
@ -146,7 +146,7 @@ static void WriteBrokenBlockNPC(UGeckoInstruction data)
|
|||||||
|
|
||||||
static bool CheckFPU(u32 data)
|
static bool CheckFPU(u32 data)
|
||||||
{
|
{
|
||||||
UReg_MSR& msr = (UReg_MSR&)MSR;
|
UReg_MSR msr{MSR};
|
||||||
if (!msr.FP)
|
if (!msr.FP)
|
||||||
{
|
{
|
||||||
PowerPC::ppcState.Exceptions |= EXCEPTION_FPU_UNAVAILABLE;
|
PowerPC::ppcState.Exceptions |= EXCEPTION_FPU_UNAVAILABLE;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user