From 70f687136333697d2bc614d06fed0b6a795305c1 Mon Sep 17 00:00:00 2001 From: raven02 Date: Thu, 12 Jun 2014 04:22:32 +0800 Subject: [PATCH] Fix vertex program decompile function --- rpcs3/Emu/GS/GL/GLVertexProgram.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rpcs3/Emu/GS/GL/GLVertexProgram.cpp b/rpcs3/Emu/GS/GL/GLVertexProgram.cpp index ac1205e403..8dbc57081a 100644 --- a/rpcs3/Emu/GS/GL/GLVertexProgram.cpp +++ b/rpcs3/Emu/GS/GL/GLVertexProgram.cpp @@ -601,7 +601,8 @@ void GLVertexProgram::Wait() void GLVertexProgram::Decompile(RSXVertexProgram& prog) { - GLVertexDecompilerThread(prog.data, shader, parr); + GLVertexDecompilerThread decompiler(prog.data, shader, parr); + decompiler.Task(); } void GLVertexProgram::DecompileAsync(RSXVertexProgram& prog)