From 1aaf9d3e7ba6c321d1866833050e9620d095491b Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Mon, 27 Aug 2012 15:38:55 +0000 Subject: [PATCH] Use correct fallback height and width for r_mode -2. --- code/sdl/sdl_glimp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/sdl/sdl_glimp.c b/code/sdl/sdl_glimp.c index 1d4af0b3..39b09a77 100644 --- a/code/sdl/sdl_glimp.c +++ b/code/sdl/sdl_glimp.c @@ -260,8 +260,8 @@ static int GLimp_SetMode(int mode, qboolean fullscreen, qboolean noborder) } else { - glConfig.vidWidth = 480; - glConfig.vidHeight = 640; + glConfig.vidWidth = 640; + glConfig.vidHeight = 480; ri.Printf( PRINT_ALL, "Cannot determine display resolution, assuming 640x480\n" ); }