From 05f8d8b5f1feca246e4a1a5f9ae2b7cbd420f4dc Mon Sep 17 00:00:00 2001 From: Azaezel Date: Tue, 19 Feb 2019 13:13:23 -0600 Subject: [PATCH] corrects a parity flaw between wireframe and non wireframe box display --- Engine/source/gfx/gfxDrawUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/source/gfx/gfxDrawUtil.cpp b/Engine/source/gfx/gfxDrawUtil.cpp index 9796e30fa..688de6bcf 100644 --- a/Engine/source/gfx/gfxDrawUtil.cpp +++ b/Engine/source/gfx/gfxDrawUtil.cpp @@ -845,7 +845,7 @@ void GFXDrawUtil::_drawWireCube( const GFXStateBlockDesc &desc, const Point3F &s if ( xfm != NULL ) { for ( U32 i = 0; i < 30; i++ ) - xfm->mulP( verts[i].point ); + xfm->mulV( verts[i].point ); } // Apply position offset