From 324d5573a3e6ac888197305f80f5a276f93a899b Mon Sep 17 00:00:00 2001 From: Joshua Achorn Date: Fri, 7 Apr 2023 14:37:04 -0400 Subject: [PATCH] fix(gx): remove duplicate buf decls --- src/gx/Buffer.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/gx/Buffer.cpp b/src/gx/Buffer.cpp index a414ca1..29a76fe 100644 --- a/src/gx/Buffer.cpp +++ b/src/gx/Buffer.cpp @@ -279,11 +279,6 @@ void GxPrimVertexPtr(uint32_t vertexCount, const C3Vector* pos, uint32_t posStri C2Vector emptyTex0 = { 0.0f, 0.0f }; C2Vector emptyTex1 = { 0.0f, 0.0f }; - C3Vector* bufNormal; - CImVector* bufColor; - C2Vector* bufTex0; - C2Vector* bufTex1; - auto bufPos = reinterpret_cast(bufData + GxVertexAttribOffset(format, GxVA_Position)); auto bufPosStride = vertexSize; auto bufNormal = reinterpret_cast(bufData + GxVertexAttribOffset(format, GxVA_Normal));