mirror of
https://github.com/love2d/love.git
synced 2026-08-15 15:51:12 +02:00
Fixed some compiler warnings
This commit is contained in:
@@ -114,7 +114,7 @@ void Timer::step()
|
||||
void Timer::sleep(double seconds) const
|
||||
{
|
||||
if (seconds > 0)
|
||||
delay((int)(seconds*1000));
|
||||
delay((unsigned int)(seconds*1000));
|
||||
}
|
||||
|
||||
double Timer::getDelta() const
|
||||
|
||||
Reference in New Issue
Block a user