From 5c7e04c539bcb08660a980ebaa775ae9b9d5189b Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Sat, 21 Jul 2012 02:40:34 +0000 Subject: [PATCH] - Fixed typo: Midtextures with world panning replaced rw_midtexturemid with the rowoffset instead of adding them together. SVN r3778 (trunk) --- src/r_segs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/r_segs.cpp b/src/r_segs.cpp index 41632d240..a40a2ce35 100644 --- a/src/r_segs.cpp +++ b/src/r_segs.cpp @@ -1965,7 +1965,7 @@ void R_NewWall (bool needlights) } if (midtexture->bWorldPanning) { - rw_midtexturemid = MulScale16(rowoffset, yrepeat); + rw_midtexturemid += MulScale16(rowoffset, yrepeat); } else {