Fixed some #define's, as pointed out by lemondrops.

This commit is contained in:
OBattler
2022-04-13 02:47:37 +02:00
parent e0223cb27b
commit 1f144f1885
2 changed files with 4 additions and 4 deletions

View File

@@ -34,8 +34,8 @@
#endif #endif
#endif #endif
#ifndef IS_DYNAREC #ifdef IS_DYNAREC
#define IS_DYNAREC #undef IS_DYNAREC
#endif #endif
#include "386_common.h" #include "386_common.h"

View File

@@ -24,8 +24,8 @@
#define CPU_BLOCK_END() cpu_block_end = 1 #define CPU_BLOCK_END() cpu_block_end = 1
#ifdef IS_DYNAREC #ifndef IS_DYNAREC
#undef IS_DYNAREC #define IS_DYNAREC
#endif #endif
#include "386_common.h" #include "386_common.h"