about summary refs log tree commit diff stats
path: root/src/dynarec
diff options
context:
space:
mode:
authorYang Liu <numbksco@gmail.com>2024-06-04 04:04:12 +0800
committerGitHub <noreply@github.com>2024-06-03 22:04:12 +0200
commitc2ce5d5557f7c0f46a65ce70b05c1b19f440d70a (patch)
tree97826b5ff667ae1a62ea6dee8684057b212399c6 /src/dynarec
parent0d30fe90f85bc9975457322a9a327f1ca61e555b (diff)
downloadbox64-c2ce5d5557f7c0f46a65ce70b05c1b19f440d70a.tar.gz
box64-c2ce5d5557f7c0f46a65ce70b05c1b19f440d70a.zip
[LA64_DYNAREC] Fixed emit_or16 (#1559)
Diffstat (limited to 'src/dynarec')
-rw-r--r--src/dynarec/la64/dynarec_la64_emit_logic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dynarec/la64/dynarec_la64_emit_logic.c b/src/dynarec/la64/dynarec_la64_emit_logic.c
index 3d218cb3..08150963 100644
--- a/src/dynarec/la64/dynarec_la64_emit_logic.c
+++ b/src/dynarec/la64/dynarec_la64_emit_logic.c
@@ -465,7 +465,7 @@ void emit_or16(dynarec_la64_t* dyn, int ninst, int s1, int s2, int s3, int s4)
     }
 
     IFXA (X_ALL, la64_lbt) {
-        X64_OR_W(s1, s2);
+        X64_OR_H(s1, s2);
     }
 
     OR(s1, s1, s2);