From 7972eefbf43cc2d68c958e4fa5ea93e14b12b7b2 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Sat, 12 Dec 2009 01:20:49 +0000 Subject: Fix textscreen black border bug. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1745 --- textscreen/txt_sdl.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/textscreen/txt_sdl.c b/textscreen/txt_sdl.c index cd7dd77d..0df9fc93 100644 --- a/textscreen/txt_sdl.c +++ b/textscreen/txt_sdl.c @@ -285,10 +285,10 @@ void TXT_UpdateScreenArea(int x, int y, int w, int h) int x_end; int y_end; - x_end = LimitToRange(x + w, 0, TXT_SCREEN_W - 1); - y_end = LimitToRange(y + h, 0, TXT_SCREEN_H - 1); - x = LimitToRange(x, 0, TXT_SCREEN_W - 1); - y = LimitToRange(y, 0, TXT_SCREEN_H - 1); + x_end = LimitToRange(x + w, 0, TXT_SCREEN_W); + y_end = LimitToRange(y + h, 0, TXT_SCREEN_H); + x = LimitToRange(x, 0, TXT_SCREEN_W); + y = LimitToRange(y, 0, TXT_SCREEN_H); for (y1=y; y1