From b427ead0cc46ae6e35568a85228f6261204a197f Mon Sep 17 00:00:00 2001 From: anthony Date: Fri, 7 Oct 2016 19:55:47 -0700 Subject: Remove Frameskip --- Source/Core/VideoCommon/OpcodeDecoding.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Source/Core/VideoCommon/OpcodeDecoding.cpp') diff --git a/Source/Core/VideoCommon/OpcodeDecoding.cpp b/Source/Core/VideoCommon/OpcodeDecoding.cpp index badc794cfe..a0b73effaf 100644 --- a/Source/Core/VideoCommon/OpcodeDecoding.cpp +++ b/Source/Core/VideoCommon/OpcodeDecoding.cpp @@ -264,8 +264,7 @@ u8* Run(DataReader src, u32* cycles, bool in_display_list) u16 num_vertices = src.Read(); int bytes = VertexLoaderManager::RunVertices( cmd_byte & GX_VAT_MASK, // Vertex loader index (0 - 7) - (cmd_byte & GX_PRIMITIVE_MASK) >> GX_PRIMITIVE_SHIFT, num_vertices, src, - Fifo::WillSkipCurrentFrame(), is_preprocess); + (cmd_byte & GX_PRIMITIVE_MASK) >> GX_PRIMITIVE_SHIFT, num_vertices, src, is_preprocess); if (bytes < 0) goto end; -- cgit v1.2.3