From 033f1d725f0c4ee063d502670ee7ff27f61c7a1d Mon Sep 17 00:00:00 2001 From: Scott Mansell Date: Sat, 27 Apr 2019 15:38:02 +1200 Subject: [PATCH] Fix un-initialized powerpc.xer_* variables --- Source/Core/Core/PowerPC/PowerPC.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/Core/PowerPC/PowerPC.cpp b/Source/Core/Core/PowerPC/PowerPC.cpp index 8a2389f6ab..599b85e8d0 100644 --- a/Source/Core/Core/PowerPC/PowerPC.cpp +++ b/Source/Core/Core/PowerPC/PowerPC.cpp @@ -169,6 +169,7 @@ static void ResetRegisters() { v = 0x8000000000000001; } + SetXER({}); DBATUpdated(); IBATUpdated();