aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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++;