Skip to content

Commit

Permalink
chore(CutscenePlayer): fixup more clang errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lmichaelis committed Nov 2, 2024
1 parent d8a563f commit 2cdc8e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/World.cc
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ namespace zenkit {
w.write_int("lastProcessHour", this->last_process_hour);
w.write_int("playListCount", this->playlists.size());

for (auto i = 0; i < this->playlists.size(); ++i) {
for (auto i = 0u; i < this->playlists.size(); ++i) {
w.write_object("playContext" + std::to_string(i), this->playlists[i].lock(), version);
}
}
Expand Down

0 comments on commit 2cdc8e3

Please sign in to comment.