diff --git a/src/cpu/386_dynarec.c b/src/cpu/386_dynarec.c index 978865255..46674fbc6 100644 --- a/src/cpu/386_dynarec.c +++ b/src/cpu/386_dynarec.c @@ -34,8 +34,8 @@ #endif #endif -#ifndef IS_DYNAREC -#define IS_DYNAREC +#ifdef IS_DYNAREC +#undef IS_DYNAREC #endif #include "386_common.h" diff --git a/src/cpu/386_dynarec_ops.c b/src/cpu/386_dynarec_ops.c index 256a06726..0b02676f8 100644 --- a/src/cpu/386_dynarec_ops.c +++ b/src/cpu/386_dynarec_ops.c @@ -24,8 +24,8 @@ #define CPU_BLOCK_END() cpu_block_end = 1 -#ifdef IS_DYNAREC -#undef IS_DYNAREC +#ifndef IS_DYNAREC +#define IS_DYNAREC #endif #include "386_common.h"