From b03f9af7024fb402aa7e49b8859961c60173a0a4 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 16 Jun 2004 07:10:09 +0000 Subject: [PATCH] fix windows compile --- stepmania/src/global.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/global.cpp b/stepmania/src/global.cpp index 8924bd1cce..4986445833 100644 --- a/stepmania/src/global.cpp +++ b/stepmania/src/global.cpp @@ -4,14 +4,14 @@ #define _WIN32_WINDOWS 0x0410 // include Win98 stuff #include "windows.h" #include "archutils/Win32/Crash.h" +#else +#include #endif #if defined(CRASH_HANDLER) && (defined(LINUX) || defined(DARWIN)) #include "archutils/Unix/CrashHandler.h" #endif -#include - void NORETURN sm_crash( const char *reason ) { #if defined(_WINDOWS)