HUGO: Cleanup: Remove some C-style comments

svn-id: r55360
This commit is contained in:
Arnaud Boutonné 2011-01-20 19:33:31 +00:00
parent bb6c230587
commit 30a94d2af6
3 changed files with 5 additions and 5 deletions

View File

@ -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();

View File

@ -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) {

View File

@ -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++;