Fix many warnings about implicit integer conversions when compiling for 64 bits.

--HG--
branch : minor
This commit is contained in:
Alex Szpakowski
2015-02-20 01:20:08 -04:00
parent 85de3c41fb
commit ebc68023a7
39 changed files with 114 additions and 114 deletions
+2 -2
View File
@@ -129,8 +129,8 @@ ImageIOHandler::DecodedImage ImageIOHandler::decode(love::filesystem::FileData *
if (!image)
throw love::Exception("Could not decode image!");
img.width = CGImageGetWidth(image);
img.height = CGImageGetHeight(image);
img.width = (int) CGImageGetWidth(image);
img.height = (int) CGImageGetHeight(image);
CGImageAlphaInfo alphainfo = CGImageGetAlphaInfo(image);