diff --git a/Source/Plugins/Plugin_VideoOGL/Src/OpcodeDecoding.cpp b/Source/Plugins/Plugin_VideoOGL/Src/OpcodeDecoding.cpp index 54c8a4c356..3ba94e841b 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/OpcodeDecoding.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/OpcodeDecoding.cpp @@ -242,8 +242,7 @@ void Decode(void) if (Cmd&0x80) { // load vertices - u16 numVertices = g_pDataReader->Read16(); - printf("numVertices %d\n",numVertices); + u16 numVertices = g_pDataReader->Read16(); if( numVertices > 0 ) { g_VertexLoaders[Cmd & GX_VAT_MASK].RunVertices((Cmd & GX_PRIMITIVE_MASK) >> GX_PRIMITIVE_SHIFT, numVertices); }