Skip to content

Commit

Permalink
[LA64_DYNAREC] Fixed a typo in GETGB
Browse files Browse the repository at this point in the history
  • Loading branch information
ksco committed Sep 20, 2024
1 parent cd9d19a commit 964a5f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dynarec/la64/dynarec_la64_helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@
gb2 = 0; \
} else { \
gd = (nextop & 0x38) >> 3; \
gb2 = ((gd & 4) >> 2); \
gb2 = ((gd & 4) << 1); \
gb1 = TO_LA64((gd & 3)); \
} \
gd = i; \
Expand Down

0 comments on commit 964a5f7

Please sign in to comment.