From 31123ca6ce9e876281b01d9d6472839fe3b63757 Mon Sep 17 00:00:00 2001 From: Sonicadvance1 Date: Tue, 22 Jul 2008 11:26:05 +0000 Subject: [PATCH] Linux: Woops, forgot to remove testing code in video plugin git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@55 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_VideoOGL/Src/OpcodeDecoding.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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); }