the rest of scr_viewsize value -> int_val. didn't look closely enough at how

size is used. no longer segs
This commit is contained in:
Bill Currie 2000-10-21 00:12:09 +00:00
parent e698713185
commit 88234b13e8

View file

@ -329,16 +329,16 @@ void R_SetVrect (vrect_t *pvrectin, vrect_t *pvrect, int lineadj)
float size; float size;
qboolean full = false; qboolean full = false;
if (scr_viewsize->value >= 100.0) { if (scr_viewsize->int_val >= 100) {
size = 100.0; size = 100;
full = true; full = true;
} else { } else {
size = scr_viewsize->value; size = scr_viewsize->int_val;
} }
if (cl.intermission) { if (cl.intermission) {
full = true; full = true;
size = 100.0; size = 100;
lineadj = 0; lineadj = 0;
} }
size /= 100; size /= 100;