mirror of
https://github.com/love2d/love.git
synced 2026-08-16 00:02:12 +02:00
Fix an uninitialized variable causing (harmless) OpenGL errors. Resolves issue #1434.
This commit is contained in:
@@ -38,7 +38,7 @@ class FenceSync
|
||||
{
|
||||
public:
|
||||
|
||||
FenceSync() {}
|
||||
FenceSync() : sync(0) {}
|
||||
~FenceSync();
|
||||
|
||||
bool fence();
|
||||
|
||||
Reference in New Issue
Block a user