소스 검색

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];
 }