[quake3-commits] r2312 - trunk/code/sdl
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Mon Aug 27 11:38:55 EDT 2012
Author: ztm
Date: 2012-08-27 11:38:55 -0400 (Mon, 27 Aug 2012)
New Revision: 2312
Modified:
trunk/code/sdl/sdl_glimp.c
Log:
Use correct fallback height and width for r_mode -2.
Modified: trunk/code/sdl/sdl_glimp.c
===================================================================
--- trunk/code/sdl/sdl_glimp.c 2012-08-27 14:52:41 UTC (rev 2311)
+++ trunk/code/sdl/sdl_glimp.c 2012-08-27 15:38:55 UTC (rev 2312)
@@ -260,8 +260,8 @@
}
else
{
- glConfig.vidWidth = 480;
- glConfig.vidHeight = 640;
+ glConfig.vidWidth = 640;
+ glConfig.vidHeight = 480;
ri.Printf( PRINT_ALL,
"Cannot determine display resolution, assuming 640x480\n" );
}
More information about the quake3-commits
mailing list