From b2255d175eeda614cfb65e49d16636b2e9b908d3 Mon Sep 17 00:00:00 2001 From: jsalmon3 <> Date: Sat, 30 Nov 2002 04:08:21 +0000 Subject: [PATCH] Added missing }'s --- src/video/video.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/video/video.cpp b/src/video/video.cpp index 86c980590..2a17470c2 100644 --- a/src/video/video.cpp +++ b/src/video/video.cpp @@ -331,9 +331,10 @@ global void SetClipping(int left, int top, int right, int bottom) left = 0; } else if (left >= VideoWidth) { left = VideoWidth - 1; + } if (top < 0) { top = 0; - else if (top >= VideoHeight) { + } else if (top >= VideoHeight) { top = VideoHeight - 1; } if (right < 0) {