mirror of
https://github.com/love2d/love.git
synced 2026-08-15 07:41:11 +02:00
Fix many warnings about implicit integer conversions when compiling for 64 bits.
--HG-- branch : minor
This commit is contained in:
@@ -176,7 +176,7 @@ Variant *Channel::peek()
|
||||
int Channel::getCount()
|
||||
{
|
||||
Lock l(mutex);
|
||||
return queue.size();
|
||||
return (int) queue.size();
|
||||
}
|
||||
|
||||
void Channel::clear()
|
||||
|
||||
Reference in New Issue
Block a user