mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-09-23 19:54:47 +08:00
Fixed compile warning, thanks to Michael Pohoreski
This commit is contained in:
+1
-1
@@ -187,7 +187,7 @@ static SDL_bool CompileShaderProgram(ShaderData *data)
|
||||
}
|
||||
glUseProgramObjectARB(0);
|
||||
|
||||
return (glGetError() == GL_NO_ERROR);
|
||||
return (glGetError() == GL_NO_ERROR) ? SDL_TRUE : SDL_FALSE;
|
||||
}
|
||||
|
||||
static void DestroyShaderProgram(ShaderData *data)
|
||||
|
||||
Reference in New Issue
Block a user