Explorar el Código

return 0 if a polygon texture is accessed that does not exists

Kolja Strohm hace 8 meses
padre
commit
a58b3b16f9
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      Model3D.cpp

+ 1 - 0
Model3D.cpp

@@ -709,6 +709,7 @@ void Model3DTextur::setPolygonTextur(int pI, Textur* txt)
 //  i: Der Index des Polygons
 Textur* Model3DTextur::zPolygonTextur(int i) const
 {
+    if (i >= textureCount) return 0;
     return textures[i];
 }