From 0894e26ac8d7937982e3e90dc5ac3d5dcefe5719 Mon Sep 17 00:00:00 2001 From: qqshka Date: Mon, 25 Jan 2010 17:13:23 +0000 Subject: [PATCH] think it more right --- r_draw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/r_draw.c b/r_draw.c index c5569f017..048f50c3a 100644 --- a/r_draw.c +++ b/r_draw.c @@ -276,9 +276,9 @@ void Draw_EnableScissorRectangle(int x, int y, int width, int height) void Draw_DisableScissor() { scissor_left = 0; - scissor_right = vid.conwidth; + scissor_right = vid.width; scissor_top = 0; - scissor_bottom = vid.conheight; + scissor_bottom = vid.height; } void Draw_Init (void)