From 08d49512ff3af8e98f5d7d55c477689ce486c76d Mon Sep 17 00:00:00 2001 From: MegaMech <7255464+MegaMech@users.noreply.github.com> Date: Thu, 24 Apr 2025 14:04:11 -0600 Subject: [PATCH] Fix syntax error --- src/engine/editor/Collision.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/editor/Collision.cpp b/src/engine/editor/Collision.cpp index ecde8d340..bf62d6273 100644 --- a/src/engine/editor/Collision.cpp +++ b/src/engine/editor/Collision.cpp @@ -46,7 +46,7 @@ namespace Editor { break; } case G_VTX_OTR_FILEPATH: { - const const char* filePath = (const char*)hi; + const char* filePath = (const char*)hi; ptr++; size_t vtxDataOff = ptr->words.w1 & 0xFFFF; vtx = ( (Vtx*)ResourceGetDataByName(filePath) ) + vtxDataOff;