mirror of
https://github.com/love2d/love.git
synced 2026-08-16 16:20:42 +02:00
Some idiot put a != where there should be a ==.
This commit is contained in:
@@ -205,7 +205,7 @@ namespace opengl
|
||||
delete[] buffer_copy;
|
||||
buffer_copy = 0;
|
||||
|
||||
return (GL_NO_ERROR != err);
|
||||
return (GL_NO_ERROR == err);
|
||||
}
|
||||
|
||||
void VBO::unload(bool save)
|
||||
|
||||
Reference in New Issue
Block a user