Fix compiler warning

This commit is contained in:
Sasha Szpakowski
2024-01-06 15:44:39 -04:00
parent fffb835358
commit 501c41e10f
+1 -1
View File
@@ -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;