[Scummvm-cvs-logs] SF.net SVN: scummvm:[42094] scummvm/trunk/engines/sci/sci.h

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Sat Jul 4 17:39:31 CEST 2009


Revision: 42094
          http://scummvm.svn.sourceforge.net/scummvm/?rev=42094&view=rev
Author:   thebluegr
Date:     2009-07-04 15:39:31 +0000 (Sat, 04 Jul 2009)

Log Message:
-----------
- Changed some comments to DOxygen style

Modified Paths:
--------------
    scummvm/trunk/engines/sci/sci.h

Modified: scummvm/trunk/engines/sci/sci.h
===================================================================
--- scummvm/trunk/engines/sci/sci.h	2009-07-04 15:22:42 UTC (rev 42093)
+++ scummvm/trunk/engines/sci/sci.h	2009-07-04 15:39:31 UTC (rev 42094)
@@ -82,39 +82,35 @@
 extern const char *versionNames[9];
 
 enum SciGameFlags {
-	/*
-	** SCI0 flags
-	*/
+	// SCI0 flags
 
 	/* Applies to all versions before 0.000.395 (i.e. KQ4 old, XMAS 1988 and LSL2)
-	** Old SCI versions used two word header for script blocks (first word equal
-	** to 0x82, meaning of the second one unknown). New SCI versions used one
-	** word header.
-	** Also, old SCI versions assign 120 degrees to left & right, and 60 to up
-	** and down. Later versions use an even 90 degree distribution.
-	*/
+	 * Old SCI versions used two word header for script blocks (first word equal
+	 * to 0x82, meaning of the second one unknown). New SCI versions used one
+	 * word header.
+	 * Also, old SCI versions assign 120 degrees to left & right, and 60 to up
+	 * and down. Later versions use an even 90 degree distribution.
+	 */
 	GF_SCI0_OLD				= (1 << 0),
 
 	/* Applies to all versions before 0.000.629
-	** Older SCI versions had simpler code for GetTime()
-	*/
+	 * Older SCI versions had simpler code for GetTime()
+	 */
 	GF_SCI0_OLDGETTIME		= (1 << 1),
 
 	// ----------------------------------------------------------------------------
 
-	/*
-	** SCI1 flags
-	*/
+	// SCI1 flags
 
 	/*
-	** Used to distinguish SCI1 EGA games
-	*/
+	 * Used to distinguish SCI1 EGA games
+	 */
 	GF_SCI1_EGA				= (1 << 2),
 
 	/* Applies to all SCI1 versions after 1.000.200
-    ** In late SCI1 versions, the argument of lofs[as] instructions
-	** is absolute rather than relative.
-	*/
+     * In late SCI1 versions, the argument of lofs[as] instructions
+	 * is absolute rather than relative.
+	 */
 	GF_SCI1_LOFSABSOLUTE	= (1 << 3)
 };
 


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