diff options
author | Filippos Karapetis | 2009-07-04 15:39:31 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-07-04 15:39:31 +0000 |
commit | fddc5915f7f6ff8feb37d356666d32d3162a16b0 (patch) | |
tree | 725272a77b8390e0472282812959ce703974c45e | |
parent | 49ef8ae5a4a4b4f08ac5a8d6f059bb4f7dd43c3f (diff) | |
download | scummvm-rg350-fddc5915f7f6ff8feb37d356666d32d3162a16b0.tar.gz scummvm-rg350-fddc5915f7f6ff8feb37d356666d32d3162a16b0.tar.bz2 scummvm-rg350-fddc5915f7f6ff8feb37d356666d32d3162a16b0.zip |
- Changed some comments to DOxygen style
svn-id: r42094
-rw-r--r-- | engines/sci/sci.h | 34 |
1 files changed, 15 insertions, 19 deletions
diff --git a/engines/sci/sci.h b/engines/sci/sci.h index c1033cb424..fdf9dc9ebf 100644 --- a/engines/sci/sci.h +++ b/engines/sci/sci.h @@ -82,39 +82,35 @@ enum SciGameVersions { 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) }; |