From 7bb93c3bfe67670a9f7054f200edc557326b4809 Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Sun, 29 Sep 2013 01:42:30 +0200 Subject: [PATCH] Forgot to re-enable the "single" case of vh2f --- Core/MIPS/x86/CompVFPU.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Core/MIPS/x86/CompVFPU.cpp b/Core/MIPS/x86/CompVFPU.cpp index 83b8d441b5..348a1bdf6f 100644 --- a/Core/MIPS/x86/CompVFPU.cpp +++ b/Core/MIPS/x86/CompVFPU.cpp @@ -1127,11 +1127,12 @@ void Jit::Comp_Vh2f(MIPSOpcode op) { switch (sz) { case V_Single: outsize = V_Pair; - DISABLE; break; case V_Pair: outsize = V_Quad; break; + default: + DISABLE; } u8 sregs[4], dregs[4];