summaryrefslogtreecommitdiffstats
path: root/src/skel/crossplatform.h
diff options
context:
space:
mode:
authoreray orçunus <erayorcunus@gmail.com>2020-05-11 19:10:01 +0200
committereray orçunus <erayorcunus@gmail.com>2020-05-11 19:10:01 +0200
commit36e2bc95d385c79075495d96e066d697727449d5 (patch)
treeea31257f477421dedf55decfd8bde8f478198d4a /src/skel/crossplatform.h
parentLinux build support (diff)
downloadre3-36e2bc95d385c79075495d96e066d697727449d5.tar
re3-36e2bc95d385c79075495d96e066d697727449d5.tar.gz
re3-36e2bc95d385c79075495d96e066d697727449d5.tar.bz2
re3-36e2bc95d385c79075495d96e066d697727449d5.tar.lz
re3-36e2bc95d385c79075495d96e066d697727449d5.tar.xz
re3-36e2bc95d385c79075495d96e066d697727449d5.tar.zst
re3-36e2bc95d385c79075495d96e066d697727449d5.zip
Diffstat (limited to '')
-rw-r--r--src/skel/crossplatform.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/skel/crossplatform.h b/src/skel/crossplatform.h
index f6a3408b..a21877c1 100644
--- a/src/skel/crossplatform.h
+++ b/src/skel/crossplatform.h
@@ -82,7 +82,7 @@ RwBool IsForegroundApp();
#endif
// Codes compatible with Windows and Linux
-#if !defined _WIN32
+#ifndef _WIN32
#define DeleteFile unlink
// Needed for save games
@@ -103,7 +103,7 @@ void GetLocalTime_CP(SYSTEMTIME* out);
#endif
// Compatible with Linux/POSIX and MinGW on Windows
-#if !defined _WIN32
+#ifndef _WIN32
#include <iostream>
#include <dirent.h>
#include <sys/types.h>