Fixed some compiler warnings

This commit is contained in:
Alex Szpakowski
2013-12-07 05:07:54 -04:00
parent eadb718ade
commit 2ee869b0e8
9 changed files with 19 additions and 19 deletions
+1 -1
View File
@@ -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