summaryrefslogtreecommitdiffstats
path: root/src/core/network/sockets.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/network/sockets.h')
-rw-r--r--src/core/network/sockets.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/network/sockets.h b/src/core/network/sockets.h
index 7bdff0fe4..a44393325 100644
--- a/src/core/network/sockets.h
+++ b/src/core/network/sockets.h
@@ -9,7 +9,7 @@
#if defined(_WIN32)
#include <winsock.h>
-#elif !defined(__unix__)
+#elif !YUZU_UNIX
#error "Platform not implemented"
#endif
@@ -84,7 +84,7 @@ public:
#if defined(_WIN32)
SOCKET fd = INVALID_SOCKET;
-#elif defined(__unix__)
+#elif YUZU_UNIX
int fd = -1;
#endif
};