Fix vertex program decompile function

This commit is contained in:
raven02 2014-06-12 04:22:32 +08:00
parent 52a1860f0a
commit 70f6871363

View File

@ -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)