summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon Howard2009-06-07 16:35:43 +0000
committerSimon Howard2009-06-07 16:35:43 +0000
commitad9f8107f4d9d4ea636eb238205f31270cc1514a (patch)
tree142f7e28a950480660dc5a1d1cfb4e043bdee2b1 /src
parent1a54277adf6413026ccd77435601bcb50f1aa169 (diff)
downloadchocolate-doom-ad9f8107f4d9d4ea636eb238205f31270cc1514a.tar.gz
chocolate-doom-ad9f8107f4d9d4ea636eb238205f31270cc1514a.tar.bz2
chocolate-doom-ad9f8107f4d9d4ea636eb238205f31270cc1514a.zip
Don't try to use the SDL DirectX driver under Windows CE.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1568
Diffstat (limited to 'src')
-rw-r--r--src/i_video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i_video.c b/src/i_video.c
index 0ed4d716..fa7dfff9 100644
--- a/src/i_video.c
+++ b/src/i_video.c
@@ -1353,7 +1353,7 @@ static void SetSDLVideoDriver(void)
free(env_string);
}
-#ifdef _WIN32
+#if defined(_WIN32) && !defined(_WIN32_WCE)
// Allow -gdi as a shortcut for using the windib driver.