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
This commit is contained in:
sezero 2010-02-16 08:53:20 +00:00
parent 28bfd8ebba
commit 3f5a60f0f7

View file

@ -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;