mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-03 00:35:54 +00:00
HUGO: Cleanup: Remove some C-style comments
svn-id: r55360
This commit is contained in:
parent
bb6c230587
commit
30a94d2af6
@ -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();
|
||||
|
||||
|
@ -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) {
|
||||
|
@ -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++;
|
||||
|
Loading…
x
Reference in New Issue
Block a user