From a6c6ec012ce6d5355b776379ec8b2cbd94552cf3 Mon Sep 17 00:00:00 2001 From: Robin Kertels Date: Thu, 15 Sep 2022 23:38:57 +0200 Subject: VertexLoaderManager: Clean up and slightly speed up with templates --- Source/Core/VideoCommon/OpcodeDecoding.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/VideoCommon/OpcodeDecoding.cpp') diff --git a/Source/Core/VideoCommon/OpcodeDecoding.cpp b/Source/Core/VideoCommon/OpcodeDecoding.cpp index 3f90a2b6e3..c8f2f2c53a 100644 --- a/Source/Core/VideoCommon/OpcodeDecoding.cpp +++ b/Source/Core/VideoCommon/OpcodeDecoding.cpp @@ -122,7 +122,7 @@ public: // HACK DataReader src{const_cast(vertex_data), const_cast(vertex_data) + size}; const u32 bytes = - VertexLoaderManager::RunVertices(vat, primitive, num_vertices, src, is_preprocess); + VertexLoaderManager::RunVertices(vat, primitive, num_vertices, src); ASSERT(bytes == size); -- cgit v1.2.3