mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
- Changed some comments to DOxygen style
svn-id: r42094
This commit is contained in:
parent
49ef8ae5a4
commit
fddc5915f7
@ -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)
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user