From 52b5c8870fe1ad7ff2554b223fa8e37cb2c909f5 Mon Sep 17 00:00:00 2001 From: Justin Marshall Date: Fri, 3 Jul 2020 10:11:49 -0700 Subject: [PATCH] Disabled scissor rect for tile rendering. --- code/redalert/tileset.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/redalert/tileset.cpp b/code/redalert/tileset.cpp index c0365c0..c778f1c 100644 --- a/code/redalert/tileset.cpp +++ b/code/redalert/tileset.cpp @@ -271,9 +271,9 @@ void __cdecl Buffer_Draw_Stamp_Clip2(GraphicViewPortClass& viewport, const void icon_index = 0; } - GL_SetClipRect(xstart, ystart, blit_width, blit_height); + //GL_SetClipRect(xstart, ystart, blit_width, blit_height); GL_RenderImage(iconImage, xstart, ystart, blit_width, blit_height, 0, icon_index); - GL_ResetClipRect(); + //GL_ResetClipRect(); } } }