From 660b3c2209880a60b159d076823eef024d15872a Mon Sep 17 00:00:00 2001 From: divverent Date: Sat, 25 Jul 2009 07:37:39 +0000 Subject: [PATCH] unbound conwidth/conheight a little git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9074 d7cf8633-e32d-0410-b094-e92efae38249 --- cl_screen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cl_screen.c b/cl_screen.c index 81a018a9..7581b256 100644 --- a/cl_screen.c +++ b/cl_screen.c @@ -1969,8 +1969,8 @@ void CL_UpdateScreen(void) rendertime1 = Sys_DoubleTime(); - conwidth = bound(320, vid_conwidth.value, 2048); - conheight = bound(200, vid_conheight.value, 1536); + conwidth = bound(160, vid_conwidth.value, 32768); + conheight = bound(90, vid_conheight.value, 24576); if (vid_conwidth.value != conwidth) Cvar_SetValue("vid_conwidth", conwidth); if (vid_conheight.value != conheight) -- 2.39.2