aboutsummaryrefslogtreecommitdiff
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
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
-rw-r--r--engines/hugo/hugo.cpp2
-rw-r--r--engines/hugo/schedule.cpp2
-rw-r--r--engines/hugo/sound.cpp6
3 files changed, 5 insertions, 5 deletions
diff --git a/engines/hugo/hugo.cpp b/engines/hugo/hugo.cpp
index 05c40e2cc3..dd26f21b51 100644
--- a/engines/hugo/hugo.cpp
+++ b/engines/hugo/hugo.cpp
@@ -259,7 +259,7 @@ Common::Error HugoEngine::run() {
if (!loadHugoDat())
return Common::kUnknownError;
- /* Use Windows-looking mouse cursor */
+ // Use Windows-looking mouse cursor
_screen->setCursorPal();
_screen->resetInventoryObjId();
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) {
diff --git a/engines/hugo/sound.cpp b/engines/hugo/sound.cpp
index 1ce85b9da5..f59a121e00 100644
--- a/engines/hugo/sound.cpp
+++ b/engines/hugo/sound.cpp
@@ -30,7 +30,7 @@
*
*/
-/* sound.c - sound effects and music support */
+// sound.c - sound effects and music support
#include "common/system.h"
#include "common/config-manager.h"
@@ -402,7 +402,7 @@ void SoundHandler::pcspkr_player() {
return;
}
- /* Time to play next note */
+ // Time to play next note
do {
cmd_note = true;
switch (*DOSSongPtr) {
@@ -464,7 +464,7 @@ void SoundHandler::pcspkr_player() {
pcspkrTimer = pcspkrNoteDuration;
DOSSongPtr++;
break;
- case '.': /* A rest note */
+ case '.': // A rest note
_speakerStream->stop();
pcspkrTimer = pcspkrNoteDuration;
DOSSongPtr++;