diff menu.c @ 1244:0a34e31c4fd0

Update Windows build to use mingw-w64 cross compiler rather than Wine
author Michael Pavone <pavone@retrodev.com>
date Sun, 26 Feb 2017 23:18:21 -0800
parents 2eb54e24914e
children 5905593d6828
line wrap: on
line diff
--- a/menu.c	Sun Feb 26 20:50:03 2017 -0800
+++ b/menu.c	Sun Feb 26 23:18:21 2017 -0800
@@ -111,8 +111,13 @@
 
 #ifdef _WIN32
 #define localtime_r(a,b) localtime(a)
+//windows inclues seem not to like certain single letter defines from m68k_internal.h
+//get rid of them here
+#undef X
 #undef N
-#undef X
+#undef Z
+#undef V
+#undef C
 #include <windows.h>
 #endif