Selaa lähdekoodia

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

Kolja Strohm 8 kuukautta sitten
vanhempi
commit
a58b3b16f9
1 muutettua tiedostoa jossa 1 lisäystä ja 0 poistoa
  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];
 }