]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
-width and -height can now be used alone (instead of having to use both) for better...
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 29 Nov 2002 00:33:13 +0000 (00:33 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 29 Nov 2002 00:33:13 +0000 (00:33 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@2658 d7cf8633-e32d-0410-b094-e92efae38249

vid_shared.c

index 2b1b370cdd695d52a8699165d1244d5cc2bb6b0d..89bfdfac6f9d36b4db366b0c21c32202c3733f10 100644 (file)
@@ -520,7 +520,7 @@ void VID_Restart_f(void)
 int vid_commandlinecheck = true;
 void VID_Open(void)
 {
-       int i;
+       int i, width, height;
        if (vid_commandlinecheck)
        {
                // interpret command-line parameters
@@ -529,10 +529,20 @@ void VID_Open(void)
                        Cvar_SetValueQuick(&vid_fullscreen, false);
                if ((i = COM_CheckParm("-fullscreen")) != 0)
                        Cvar_SetValueQuick(&vid_fullscreen, true);
+               width = 0;
+               height = 0;
                if ((i = COM_CheckParm("-width")) != 0)
-                       Cvar_SetQuick(&vid_width, com_argv[i+1]);
+                       width = atoi(com_argv[i+1]);
                if ((i = COM_CheckParm("-height")) != 0)
-                       Cvar_SetQuick(&vid_height, com_argv[i+1]);
+                       height = atoi(com_argv[i+1]);
+               if (width == 0)
+                       width = height * 4 / 3;
+               if (height == 0)
+                       height = width * 3 / 4;
+               if (width)
+                       Cvar_SetValueQuick(&vid_width, width);
+               if (height)
+                       Cvar_SetValueQuick(&vid_height, height);
                if ((i = COM_CheckParm("-bpp")) != 0)
                        Cvar_SetQuick(&vid_bitsperpixel, com_argv[i+1]);
                if ((i = COM_CheckParm("-nostencil")) != 0)