mirror of
https://github.com/ptitSeb/box64.git
synced 2024-11-27 00:30:32 +00:00
[LA64_DYNAREC] Fixed a typo in GETGB (#1846)
Some checks failed
Build and Release Box64 / build (ubuntu-latest, ANDROID, Release) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, ANDROID, Trace) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, ARM64, Box32) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, ARM64, Release) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, ARM64, StaticBuild) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, ARM64, Trace) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, LARCH64, Box32) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, LARCH64, Release) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, LARCH64, StaticBuild) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, LARCH64, Trace) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, RISCV, Box32) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, RISCV, Release) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, RISCV, StaticBuild) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, RISCV, Trace) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, RK3588, Box32) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, RK3588, Release) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, RK3588, StaticBuild) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, RK3588, Trace) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, TERMUX, Release) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, TERMUX, Trace) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, X64, Box32) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, X64, Release) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, X64, Trace) (push) Failing after 1s
Some checks failed
Build and Release Box64 / build (ubuntu-latest, ANDROID, Release) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, ANDROID, Trace) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, ARM64, Box32) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, ARM64, Release) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, ARM64, StaticBuild) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, ARM64, Trace) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, LARCH64, Box32) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, LARCH64, Release) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, LARCH64, StaticBuild) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, LARCH64, Trace) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, RISCV, Box32) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, RISCV, Release) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, RISCV, StaticBuild) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, RISCV, Trace) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, RK3588, Box32) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, RK3588, Release) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, RK3588, StaticBuild) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, RK3588, Trace) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, TERMUX, Release) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, TERMUX, Trace) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, X64, Box32) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, X64, Release) (push) Failing after 1s
Build and Release Box64 / build (ubuntu-latest, X64, Trace) (push) Failing after 1s
This commit is contained in:
parent
6a415b54d0
commit
4aeb8ea1b0
@ -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; \
|
||||
|
Loading…
Reference in New Issue
Block a user