mirror of
https://github.com/love2d/love.git
synced 2026-08-18 11:44:15 +02:00
Fix many warnings about implicit integer conversions when compiling for 64 bits.
--HG-- branch : minor
This commit is contained in:
@@ -140,7 +140,7 @@ int WaveDecoder::decode()
|
||||
size += bytes;
|
||||
}
|
||||
|
||||
return size;
|
||||
return (int) size;
|
||||
}
|
||||
|
||||
bool WaveDecoder::seek(float s)
|
||||
|
||||
Reference in New Issue
Block a user