early-access version 2878

This commit is contained in:
pineappleEA
2022-07-31 05:03:19 +02:00
parent 7b69f77b50
commit 6aae06d030
2 changed files with 1 additions and 2 deletions

View File

@@ -18,7 +18,6 @@ static OGLProgram LinkSeparableProgram(GLuint shader) {
glAttachShader(program.handle, shader);
glLinkProgram(program.handle);
glDetachShader(program.handle, shader);
glDeleteShader(shader);
if (!Settings::values.renderer_debug) {
return program;
}