Fix async draw wait labels type

This commit is contained in:
Wojtek Figat
2025-08-05 12:28:29 +02:00
parent 761ea094d6
commit a1a6d4738f
4 changed files with 4 additions and 4 deletions

View File

@@ -454,7 +454,7 @@ void RenderInner(SceneRenderTask* task, RenderContext& renderContext, RenderCont
// Wait for async jobs to finish
JobSystem::SetJobStartingOnDispatch(true);
for (const uint64 label : renderContextBatch.WaitLabels)
for (const int64 label : renderContextBatch.WaitLabels)
JobSystem::Wait(label);
renderContextBatch.WaitLabels.Clear();