summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/i_video.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/i_video.c b/src/i_video.c
index 804bf494..baa4fb44 100644
--- a/src/i_video.c
+++ b/src/i_video.c
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: i_video.c 30 2005-08-03 21:58:02Z fraggle $
+// $Id: i_video.c 31 2005-08-03 22:19:52Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
+// Revision 1.9 2005/08/03 22:19:52 fraggle
+// Set some flags to fix palette and improve performance
+//
// Revision 1.8 2005/08/03 21:58:02 fraggle
// Working scale*2
//
@@ -56,7 +59,7 @@
//-----------------------------------------------------------------------------
static const char
-rcsid[] = "$Id: i_video.c 30 2005-08-03 21:58:02Z fraggle $";
+rcsid[] = "$Id: i_video.c 31 2005-08-03 22:19:52Z fraggle $";
#include <ctype.h>
#include <SDL.h>
@@ -536,6 +539,7 @@ void I_InitGraphics(void)
SDL_Init(SDL_INIT_VIDEO);
+ flags |= SDL_SWSURFACE | SDL_HWPALETTE;
flags |= SDL_FULLSCREEN;
screen = SDL_SetVideoMode(SCREENWIDTH*multiply, SCREENHEIGHT*multiply, 8, flags);