浏览代码

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

Kolja Strohm 8 月之前
父节点
当前提交
a58b3b16f9
共有 1 个文件被更改,包括 1 次插入0 次删除
  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];
 }