gl_vidsdl.c (VID_InitDIB): change default width from 640 to 800. (Steven)

git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@12 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Ozkan Sezer 2010-02-16 08:53:20 +00:00
parent 8309029808
commit be7f81ef84

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;