From 3f5a60f0f7fc1ea4083c202c1a2c2cec0500ec5f Mon Sep 17 00:00:00 2001 From: sezero Date: Tue, 16 Feb 2010 08:53:20 +0000 Subject: [PATCH] gl_vidsdl.c (VID_InitDIB): change default width from 640 to 800. (Steven) git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@12 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 e70c0479..1da55370 100644 --- a/Quake/gl_vidsdl.c +++ b/Quake/gl_vidsdl.c @@ -1052,7 +1052,7 @@ void VID_InitDIB () if (COM_CheckParm("-width")) modelist[0].width = Q_atoi(com_argv[COM_CheckParm("-width")+1]); else - modelist[0].width = 640; + modelist[0].width = 800; if (modelist[0].width < 320) modelist[0].width = 320;