mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 03:55:32 +00:00
format fix
This commit is contained in:
parent
51c107656f
commit
24a19a0dd9
1 changed files with 4 additions and 1 deletions
|
@ -822,7 +822,10 @@ void GLVertexProgram::DecompileAsync(RSXVertexProgram& prog)
|
|||
|
||||
void GLVertexProgram::Compile()
|
||||
{
|
||||
if (id) glDeleteShader(id);
|
||||
if (id)
|
||||
{
|
||||
glDeleteShader(id);
|
||||
}
|
||||
|
||||
id = glCreateShader(GL_VERTEX_SHADER);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue