about summary refs log tree commit diff stats
path: root/src/dynarec/la64/dynarec_la64_helper.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dynarec/la64/dynarec_la64_helper.h')
-rw-r--r--src/dynarec/la64/dynarec_la64_helper.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dynarec/la64/dynarec_la64_helper.h b/src/dynarec/la64/dynarec_la64_helper.h
index 8dfa9970..30774ca3 100644
--- a/src/dynarec/la64/dynarec_la64_helper.h
+++ b/src/dynarec/la64/dynarec_la64_helper.h
@@ -1284,7 +1284,7 @@ uintptr_t dynarec64_F20F(dynarec_la64_t* dyn, uintptr_t addr, uintptr_t ip, int
 // Restore xFlags from LBT.eflags
 #define RESTORE_EFLAGS(s)             \
     do {                              \
-        if (la64_lbt) {               \
+        if (cpuext.lbt) {             \
             CLEAR_FLAGS_(s);          \
             X64_GET_EFLAGS(s, X_ALL); \
             OR(xFlags, xFlags, s);    \
@@ -1294,7 +1294,7 @@ uintptr_t dynarec64_F20F(dynarec_la64_t* dyn, uintptr_t addr, uintptr_t ip, int
 // Spill xFlags to LBT.eflags
 #define SPILL_EFLAGS()                     \
     do {                                   \
-        if (la64_lbt) {                    \
+        if (cpuext.lbt) {                  \
             X64_SET_EFLAGS(xFlags, X_ALL); \
         }                                  \
     } while (0)