diff options
-rw-r--r-- | base/engine.cpp | 2 | ||||
-rw-r--r-- | common/scummsys.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/base/engine.cpp b/base/engine.cpp index d84728a2e0..a2c722ae6f 100644 --- a/base/engine.cpp +++ b/base/engine.cpp @@ -220,7 +220,7 @@ void CDECL warning(const char *s, ...) { } void checkHeap() { -#if defined(_MSC_VER) +#if defined(WIN32) if (_heapchk() != _HEAPOK) { error("Heap is invalid!"); } diff --git a/common/scummsys.h b/common/scummsys.h index ee569439aa..5b3b6205cd 100644 --- a/common/scummsys.h +++ b/common/scummsys.h @@ -85,8 +85,6 @@ #define scumm_strnicmp strnicmp #define SCUMM_LITTLE_ENDIAN - #define _HEAPOK 0 - typedef unsigned char byte; typedef unsigned char uint8; typedef unsigned short uint16; |