aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/schedule.cpp
diff options
context:
space:
mode:
authorArnaud Boutonné2011-01-20 19:33:31 +0000
committerArnaud Boutonné2011-01-20 19:33:31 +0000
commit30a94d2af65a3cb53d8aa733db4edb6f630b3f9b (patch)
treeed44278cc2b6947a7b76a2b8792f8a8b7aac98c8 /engines/hugo/schedule.cpp
parentbb6c230587c65c92e1719809977e4625322dd2cb (diff)
downloadscummvm-rg350-30a94d2af65a3cb53d8aa733db4edb6f630b3f9b.tar.gz
scummvm-rg350-30a94d2af65a3cb53d8aa733db4edb6f630b3f9b.tar.bz2
scummvm-rg350-30a94d2af65a3cb53d8aa733db4edb6f630b3f9b.zip
HUGO: Cleanup: Remove some C-style comments
svn-id: r55360
Diffstat (limited to 'engines/hugo/schedule.cpp')
-rw-r--r--engines/hugo/schedule.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hugo/schedule.cpp b/engines/hugo/schedule.cpp
index 83a04fadab..0667c4370f 100644
--- a/engines/hugo/schedule.cpp
+++ b/engines/hugo/schedule.cpp
@@ -125,7 +125,7 @@ uint32 Scheduler::getDosTicks(bool updateFl) {
if (t_old == 0)
t_old = (uint32) floor((double) (g_system->getMillis() * _vm->getTPS() / 1000));
- /* Calculate current wall time in ticks */
+ // Calculate current wall time in ticks
t_now = g_system->getMillis() * _vm->getTPS() / 1000 ;
if ((t_now - t_old) > 0) {