Got a bare-bones version of SDL compiling for Windows RT. Dummy drivers are used in some places. Very little Windows-specific code (from the Win32 version of SDL) is used.

This commit is contained in:
David Ludwig 2012-10-17 21:43:20 -04:00
parent 95fc405a61
commit 54b4201aa0
9 changed files with 637 additions and 65 deletions

View file

@ -25,7 +25,7 @@
#include "SDL_timer.h"
/* Don't do the check for Visual Studio 2005, it's safe here */
#ifdef __WIN32__
#if defined(__WIN32__) || defined(__WINRT__)
#include "../core/windows/SDL_windows.h"
#endif