From 5fd8814da170223572cedb56ed2c85591544b1ba Mon Sep 17 00:00:00 2001 From: eihrul Date: Wed, 26 Jan 2011 12:24:09 +0000 Subject: [PATCH] only respect vid_soft variable if SSE2_PRESENT is defined git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10751 d7cf8633-e32d-0410-b094-e92efae38249 --- dpsoftrast.c | 16 +++++----------- vid_sdl.c | 2 ++ 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/dpsoftrast.c b/dpsoftrast.c index 89671650..884d454c 100644 --- a/dpsoftrast.c +++ b/dpsoftrast.c @@ -1,19 +1,12 @@ -#include -#include "dpsoftrast.h" #include +#include #include +#include "quakedef.h" +#include "dpsoftrast.h" -#undef true -#undef false #ifndef __cplusplus -typedef enum bool {false, true} bool; -#endif - -#if defined(__GNUC__) || (defined(_MSC_VER) && _MSC_VER >= 1400) -#define RESTRICT __restrict -#else -#define RESTRICT +typedef qboolean bool; #endif #define GL_NONE 0 @@ -4163,3 +4156,4 @@ void DPSOFTRAST_Shutdown(void) free(dpsoftrast.texture); memset(&dpsoftrast, 0, sizeof(dpsoftrast)); } + diff --git a/vid_sdl.c b/vid_sdl.c index 5c9ee27e..bd06cb7e 100644 --- a/vid_sdl.c +++ b/vid_sdl.c @@ -1262,9 +1262,11 @@ qboolean VID_InitMode(viddef_mode_t *mode) { if (!SDL_WasInit(SDL_INIT_VIDEO) && SDL_InitSubSystem(SDL_INIT_VIDEO) < 0) Sys_Error ("Failed to init SDL video subsystem: %s", SDL_GetError()); +#ifdef SSE2_PRESENT if (vid_soft.integer) return VID_InitModeSoft(mode); else +#endif return VID_InitModeGL(mode); } -- 2.39.2