From 1f144f188571fed21d9e384fa182380e1a10cffc Mon Sep 17 00:00:00 2001 From: OBattler Date: Wed, 13 Apr 2022 02:47:37 +0200 Subject: [PATCH] Fixed some #define's, as pointed out by lemondrops. --- src/cpu/386_dynarec.c | 4 ++-- src/cpu/386_dynarec_ops.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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"