Cleaned up a bit of unused code.

This commit is contained in:
Alex Szpakowski
2014-08-22 17:44:52 -03:00
parent 44b97dfadc
commit 1978fa9910
-2
View File
@@ -55,7 +55,6 @@ Image::Image(love::image::ImageData *data, Format format)
height = data->getHeight();
preload();
textureMemorySize = data->getSize();
++imageCount;
}
@@ -76,7 +75,6 @@ Image::Image(love::image::CompressedData *cdata, Format format)
height = cdata->getHeight(0);
preload();
textureMemorySize = cdata->getSize(0);
++imageCount;
}