Reworked some fixes submitted to us by ittobaal. Several fclose calls he suggested had no bearing (if fopen fails, calling fclose on a null pointer is pointless), but the (missing) array deletions were definitely valid bugs. The fix for CreateTexture() was a little loose, so I cleaned it up somewhat.

Issue: 566
This commit is contained in:
wrenczes
2010-12-27 20:00:33 +00:00
parent 814993ac1c
commit 39e6d4f2b5
4 changed files with 47 additions and 37 deletions

View File

@@ -53,7 +53,7 @@ JDistortionMesh::~JDistortionMesh()
{
delete mQuad;
delete mVertices;
delete[] mVertices;
// JGERelease();
}