From 8736a567b25af9355cb2a0aef3bb1e55daf19ed8 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sat, 24 Nov 2012 18:25:42 -0800 Subject: [PATCH] Advance the PC after vrnds. --- Core/MIPS/MIPSIntVFPU.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Core/MIPS/MIPSIntVFPU.cpp b/Core/MIPS/MIPSIntVFPU.cpp index 1deb38dffe..d749784196 100644 --- a/Core/MIPS/MIPSIntVFPU.cpp +++ b/Core/MIPS/MIPSIntVFPU.cpp @@ -974,6 +974,7 @@ namespace MIPSInt int vd = _VD; int seed = VI(vd); currentMIPS->rng.Init(seed); + PC += 4; } void Int_VrndX(u32 op)