Browse Source

Fix warning in MSVC

(cherry picked from commit fe8c217b7cc85b1f35dc54eb342a8451828a7418)
Pedro J. Estébanez 1 year ago
parent
commit
664b2502d2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/lightmapper_rd/lightmapper_rd.cpp

+ 1 - 1
modules/lightmapper_rd/lightmapper_rd.cpp

@@ -295,7 +295,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);
 		}