From e0930d0b98ca33e58605e4cd8590279218c4e1c4 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 25 Jan 2011 17:44:17 -0800 Subject: [PATCH] Fixed compile error on Visual C++ --- include/SDL_atomic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL_atomic.h b/include/SDL_atomic.h index 8342489d0..872aa1254 100644 --- a/include/SDL_atomic.h +++ b/include/SDL_atomic.h @@ -65,7 +65,7 @@ /* Visual Studio 2005 has a bug where intrin.h conflicts with winnt.h */ #if defined(_MSC_VER) && (_MSC_VER >= 1500) && !defined(_WIN32_WCE) #include -#define HAVE_MSC_ATOMICS +#define HAVE_MSC_ATOMICS 1 #endif /* Set up for C function definitions, even when using C++ */