You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-17 14:11:06 +00:00
Merge pull request #86555 from RandomShaper/fix_warn
Fix LightmapperRD division warning in MSVC
This commit is contained in:
@@ -357,7 +357,7 @@ void LightmapperRD::_create_acceleration_structures(RenderingDevice *rd, Size2i
|
||||
|
||||
for (int m_i = 0; m_i < mesh_instances.size(); m_i++) {
|
||||
if (p_step_function) {
|
||||
float p = float(m_i + 1) / mesh_instances.size() * 0.1;
|
||||
float p = float(m_i + 1) / MAX(1, mesh_instances.size()) * 0.1;
|
||||
p_step_function(0.3 + p, vformat(RTR("Plotting mesh into acceleration structure %d/%d"), m_i + 1, mesh_instances.size()), p_bake_userdata, false);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user