Skip to content

Commit

Permalink
chore(ZkCutscenePlayer): fixup Clang warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
lmichaelis committed Nov 2, 2024
1 parent 3007b61 commit e1f1cb5
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 @@ -300,7 +300,7 @@ int32_t ZkCutscenePlayer_getPlayListCount(ZkCutscenePlayer const* slf) {
ZKC_TRACE_FN();
ZKC_CHECK_NULL(slf);
ZKC_CHECK_NULL(slf->get());
return SLF->playlists.size();
return static_cast<int32_t>(SLF->playlists.size());
}

ZkCutsceneContext* ZkCutscenePlayer_getPlayListItem(ZkCutscenePlayer const* slf, uint32_t index) {
Expand Down

0 comments on commit e1f1cb5

Please sign in to comment.