From eaafb0906f61a5612c4d070ad2a50c9017f2fce2 Mon Sep 17 00:00:00 2001 From: stevenaaus Date: Tue, 20 Sep 2011 06:41:36 +0000 Subject: [PATCH] Make the default fullscreen mode 800x600 (same as window default), from Sander. git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@487 af15c1b1-3010-417e-b628-4374ebc0bcbd --- Quake/gl_vidsdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Quake/gl_vidsdl.c b/Quake/gl_vidsdl.c index 399c2e61..726ae954 100644 --- a/Quake/gl_vidsdl.c +++ b/Quake/gl_vidsdl.c @@ -1234,7 +1234,7 @@ void VID_Init (void) } else { - width = 640; + width = 800; // QuakeSpasm, was 640 } p = COM_CheckParm("-bpp");