From 1704af5b02b7933c2e9ee8c828141fe116720c13 Mon Sep 17 00:00:00 2001 From: David Ludwig Date: Sun, 27 Oct 2013 23:03:11 -0400 Subject: [PATCH] WinRT: build fixes, post SDL 2.0.1 update --- src/SDL_log.c | 2 +- src/atomic/SDL_spinlock.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SDL_log.c b/src/SDL_log.c index 4ad5c42730fe5..bc9f954fb2c8b 100644 --- a/src/SDL_log.c +++ b/src/SDL_log.c @@ -20,7 +20,7 @@ */ #include "SDL_config.h" -#if defined(__WIN32__) +#if defined(__WIN32__) || defined(__WINRT__) #include "core/windows/SDL_windows.h" #endif diff --git a/src/atomic/SDL_spinlock.c b/src/atomic/SDL_spinlock.c index ac9b61e87a694..ac78729c78acc 100644 --- a/src/atomic/SDL_spinlock.c +++ b/src/atomic/SDL_spinlock.c @@ -20,7 +20,7 @@ */ #include "SDL_config.h" -#ifdef __WIN32__ +#if defined(__WIN32__) || defined(__WINRT__) #include "../core/windows/SDL_windows.h" #endif