From f850a8e5b64f7018f594b8aa36511caeab00d929 Mon Sep 17 00:00:00 2001
From: San Jacobs
Date: Sun, 7 Aug 2022 07:56:45 +0200
Subject: Finally got this compiling on Windows

---
 src/main.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'src')

diff --git a/src/main.cpp b/src/main.cpp
index 732d67a..ac5c7e0 100755
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -22,7 +22,7 @@ along with this program. If not, see https://www.gnu.org/licenses/
 #include "time.h"
 #include "test.h"
 
-#ifdef WIN32
+#if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__)
     #define CLEAR std::system("cls")
 #else
     #define CLEAR std::cout << "\033[2J\033[1;1H"
-- 
cgit v1.2.1