From 2fa0896fd020ef2eb83a42561344fe888df06588 Mon Sep 17 00:00:00 2001
From: Monster Iestyn <iestynjealous@ntlworld.com>
Date: Tue, 30 Oct 2018 13:44:01 +0000
Subject: [PATCH] Fix an error I made in HWR_DrawFixedPatch

---
 src/hardware/hw_draw.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/hardware/hw_draw.c b/src/hardware/hw_draw.c
index ffd156862..33f5e0318 100644
--- a/src/hardware/hw_draw.c
+++ b/src/hardware/hw_draw.c
@@ -192,7 +192,7 @@ void HWR_DrawFixedPatch(GLPatch_t *gpatch, fixed_t x, fixed_t y, fixed_t pscale,
 
 		// top offset
 		// TODO: make some kind of vertical version of V_FLIP, maybe by deprecating V_OFFSET in future?!?
-		offsety = (float)SHORT(patch->topoffset) * fscale;
+		offsety = (float)SHORT(gpatch->topoffset) * fscale;
 
 		if ((option & (V_NOSCALESTART|V_OFFSET)) == (V_NOSCALESTART|V_OFFSET)) // Multiply by dupx/dupy for crosshairs
 		{
-- 
GitLab