From 42eaa7f3d8a02c28456845205ee6584f1c453e6d Mon Sep 17 00:00:00 2001 From: Ian Curtis Date: Sun, 14 Oct 2018 10:05:24 +0000 Subject: [PATCH] fix copy paste error :] --- Src/Graphics/New3D/New3D.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/Graphics/New3D/New3D.cpp b/Src/Graphics/New3D/New3D.cpp index 9cc09b5..1eea344 100644 --- a/Src/Graphics/New3D/New3D.cpp +++ b/Src/Graphics/New3D/New3D.cpp @@ -1008,7 +1008,7 @@ void CNew3D::SetMeshValues(SortingMesh *currentMesh, PolyHeader &ph) { bool smoothU = ph.TexSmoothU(); - bool smoothV = ph.TexSmoothU(); + bool smoothV = ph.TexSmoothV(); if (ph.TexUMirror()) { if (smoothU) currentMesh->wrapModeU = Mesh::TexWrapMode::mirror;