Skip to content

Commit

Permalink
size_t indices in dynlight
Browse files Browse the repository at this point in the history
  • Loading branch information
no-lex committed Mar 8, 2025
1 parent 4bb2b11 commit 2504cc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/world/dynlight.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ namespace
void cleardynlights()
{
int faded = -1;
for(uint i = 0; i < dynlights.size(); i++)
for(size_t i = 0; i < dynlights.size(); i++)
{
if(lastmillis<dynlights[i].expire)
{
Expand Down

0 comments on commit 2504cc7

Please sign in to comment.