mirror of
https://github.com/love2d/love.git
synced 2026-08-12 08:30:56 +02:00
Fix compiler warning
This commit is contained in:
@@ -1927,7 +1927,7 @@ void Graphics::flushBatchedDraws()
|
||||
{
|
||||
auto &sbstate = batchedDrawState;
|
||||
|
||||
if (sbstate.vertexCount == 0 && sbstate.indexCount == 0 || sbstate.flushing)
|
||||
if ((sbstate.vertexCount == 0 && sbstate.indexCount == 0) || sbstate.flushing)
|
||||
return;
|
||||
|
||||
VertexAttributes attributes;
|
||||
|
||||
Reference in New Issue
Block a user