From 4b19712d429ce86e44d2e5c218ae5d507628b81f Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 1 Jan 2006 23:34:06 +0000 Subject: [PATCH] Bumped windib's priority above DirectX, since both DirectDraw and DirectInput seem to be giving people issues on newer Windows and DX revisions. We'll see if this is just a temporary fix or not... :/ --ryan. --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401213 --- src/video/SDL_video.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/video/SDL_video.c b/src/video/SDL_video.c index 2646bb1ee..ee76a0c18 100644 --- a/src/video/SDL_video.c +++ b/src/video/SDL_video.c @@ -87,12 +87,12 @@ static VideoBootStrap *bootstrap[] = { #ifdef ENABLE_AALIB &AALIB_bootstrap, #endif -#ifdef ENABLE_DIRECTX - &DIRECTX_bootstrap, -#endif #ifdef ENABLE_WINDIB &WINDIB_bootstrap, #endif +#ifdef ENABLE_DIRECTX + &DIRECTX_bootstrap, +#endif #ifdef ENABLE_BWINDOW &BWINDOW_bootstrap, #endif