about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-03-21 15:56:13 +0100
committerptitSeb <sebastien.chev@gmail.com>2021-03-21 15:56:13 +0100
commitf8341bf9349337e145b7d4666cc2af65af65a2ef (patch)
treed94eee7ff4313487bc793fb7258796acca4c3959 /src
parent20ccf221a8f721de43119fc2e84cb366733b6e7e (diff)
downloadbox64-f8341bf9349337e145b7d4666cc2af65af65a2ef.tar.gz
box64-f8341bf9349337e145b7d4666cc2af65af65a2ef.zip
[DYNAREC] Fixed Pop SSE Cache helper
Diffstat (limited to 'src')
-rwxr-xr-xsrc/dynarec/dynarec_arm64_helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dynarec/dynarec_arm64_helper.c b/src/dynarec/dynarec_arm64_helper.c
index ae106539..49c4ab2c 100755
--- a/src/dynarec/dynarec_arm64_helper.c
+++ b/src/dynarec/dynarec_arm64_helper.c
@@ -947,7 +947,7 @@ void fpu_popcache(dynarec_arm_t* dyn, int ninst, int s1)
 #if STEP > 1
     // only SSE regs needs to be pop back from xEmu
     int n=0;
-    for (int i=16; i<32; i++)
+    for (int i=0; i<16; i++)
         if(dyn->ssecache[i]!=-1)
             ++n;
     if(!n)