HUGO: Remove extra spaces at end of lines

This commit is contained in:
strangerke 2011-02-18 22:43:38 +01:00
parent 81a3538706
commit 2ad969bcac
14 changed files with 117 additions and 117 deletions

View file

@ -133,7 +133,7 @@ uint32 Scheduler::getDosTicks(const bool updateFl) {
if (_oldTime == 0)
_oldTime = (uint32) floor((double) (g_system->getMillis() * _vm->getTPS() / 1000));
// Calculate current wall time in ticks
t_now = g_system->getMillis() * _vm->getTPS() / 1000 ;
t_now = g_system->getMillis() * _vm->getTPS() / 1000;
if ((t_now - _oldTime) > 0) {
_oldTime = t_now;