First pass fixing compilation warnings

This commit is contained in:
Antoine Pilote
2024-08-15 12:45:42 -04:00
parent a817001c53
commit daa640cc7c
30 changed files with 63 additions and 478 deletions

View File

@@ -283,7 +283,7 @@ namespace Nuake
const auto& result = PhysicsManager::Get().GetWorld()->Raycast(from, to);
// We multiply by 3 since we have 3 floats per hit result: vector3.
wrenEnsureSlots(vm, static_cast<double>(result.size() * 3));
wrenEnsureSlots(vm, static_cast<int>(result.size() * 3));
wrenSetSlotNewList(vm, 0);
uint32_t index = 1;