mirror of
https://github.com/love2d/love.git
synced 2026-08-14 01:20:56 +02:00
Address some compiler warnings about implicit integer conversions.
--HG-- branch : minor
This commit is contained in:
@@ -146,7 +146,7 @@ public:
|
||||
{
|
||||
// Account for our custom header's size in the decompress arguments.
|
||||
int result = LZ4_decompress_safe(data + headersize, rawbytes,
|
||||
dataSize - headersize, rawsize);
|
||||
(int) (dataSize - headersize), rawsize);
|
||||
|
||||
if (result < 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user