[Scummvm-cvs-logs] SF.net SVN: scummvm:[55360] scummvm/trunk/engines/hugo

strangerke at users.sourceforge.net strangerke at users.sourceforge.net
Thu Jan 20 20:33:31 CET 2011


Revision: 55360
          http://scummvm.svn.sourceforge.net/scummvm/?rev=55360&view=rev
Author:   strangerke
Date:     2011-01-20 19:33:31 +0000 (Thu, 20 Jan 2011)

Log Message:
-----------
HUGO: Cleanup: Remove some C-style comments

Modified Paths:
--------------
    scummvm/trunk/engines/hugo/hugo.cpp
    scummvm/trunk/engines/hugo/schedule.cpp
    scummvm/trunk/engines/hugo/sound.cpp

Modified: scummvm/trunk/engines/hugo/hugo.cpp
===================================================================
--- scummvm/trunk/engines/hugo/hugo.cpp	2011-01-20 18:17:39 UTC (rev 55359)
+++ scummvm/trunk/engines/hugo/hugo.cpp	2011-01-20 19:33:31 UTC (rev 55360)
@@ -259,7 +259,7 @@
 	if (!loadHugoDat())
 		return Common::kUnknownError;
 
-	/* Use Windows-looking mouse cursor */
+	// Use Windows-looking mouse cursor
 	_screen->setCursorPal();
 	_screen->resetInventoryObjId();
 

Modified: scummvm/trunk/engines/hugo/schedule.cpp
===================================================================
--- scummvm/trunk/engines/hugo/schedule.cpp	2011-01-20 18:17:39 UTC (rev 55359)
+++ scummvm/trunk/engines/hugo/schedule.cpp	2011-01-20 19:33:31 UTC (rev 55360)
@@ -125,7 +125,7 @@
 
 	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) {

Modified: scummvm/trunk/engines/hugo/sound.cpp
===================================================================
--- scummvm/trunk/engines/hugo/sound.cpp	2011-01-20 18:17:39 UTC (rev 55359)
+++ scummvm/trunk/engines/hugo/sound.cpp	2011-01-20 19:33:31 UTC (rev 55360)
@@ -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 @@
 		return;
 	}
 	
-	/* Time to play next note */
+	// Time to play next note
 	do {
 		cmd_note = true;
 		switch (*DOSSongPtr) {
@@ -464,7 +464,7 @@
 		pcspkrTimer = pcspkrNoteDuration;
 		DOSSongPtr++;
 		break;
-	case '.':   /* A rest note */
+	case '.':                                       // A rest note
 		_speakerStream->stop();
 		pcspkrTimer = pcspkrNoteDuration;
 		DOSSongPtr++;


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list