From 945ceb2a4d8a1f8138c205c14336624d71d2f8f6 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. --- 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