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
+1 -1
View File
@@ -140,7 +140,7 @@ int WaveDecoder::decode()
size += bytes;
}
return size;
return (int) size;
}
bool WaveDecoder::seek(float s)