diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-03-21 15:56:13 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-03-21 15:56:13 +0100 |
| commit | f8341bf9349337e145b7d4666cc2af65af65a2ef (patch) | |
| tree | d94eee7ff4313487bc793fb7258796acca4c3959 /src | |
| parent | 20ccf221a8f721de43119fc2e84cb366733b6e7e (diff) | |
| download | box64-f8341bf9349337e145b7d4666cc2af65af65a2ef.tar.gz box64-f8341bf9349337e145b7d4666cc2af65af65a2ef.zip | |
[DYNAREC] Fixed Pop SSE Cache helper
Diffstat (limited to 'src')
| -rwxr-xr-x | src/dynarec/dynarec_arm64_helper.c | 2 |
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) |