diff options
author | Filippos Karapetis | 2009-05-14 12:38:50 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-05-14 12:38:50 +0000 |
commit | f75c95045732f8562ce1f231417c345db43e50c4 (patch) | |
tree | acbcc57f44943ca9aaad7e4b5d1e94415449a79d /engines/sci/scicore/versions.h | |
parent | e03fba03b5362df7133b77ceebe7f86d9fd39caf (diff) | |
download | scummvm-rg350-f75c95045732f8562ce1f231417c345db43e50c4.tar.gz scummvm-rg350-f75c95045732f8562ce1f231417c345db43e50c4.tar.bz2 scummvm-rg350-f75c95045732f8562ce1f231417c345db43e50c4.zip |
- Replaced SCI_VERSION_FTU_LOFS_ABSOLUTE with the GF_SCI1_LOFSABSOLUTE game flag
- Moved the version defines outside of versions.h
svn-id: r40559
Diffstat (limited to 'engines/sci/scicore/versions.h')
-rw-r--r-- | engines/sci/scicore/versions.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/engines/sci/scicore/versions.h b/engines/sci/scicore/versions.h index b1eed18748..0c2b131d10 100644 --- a/engines/sci/scicore/versions.h +++ b/engines/sci/scicore/versions.h @@ -30,14 +30,6 @@ namespace Sci { -#define SCI_VERSION(_major_, _minor_, _patchlevel_) (((_major_)<<20) | ((_minor_)<<10) | _patchlevel_) -/* This allows version numbers to be compared directly */ - -#define SCI_VERSION_MAJOR(_version_) ((_version_) >> 20) -#define SCI_VERSION_MINOR(_version_) (((_version_) >> 10) & 0x3ff) -#define SCI_VERSION_PATCHLEVEL(_version_) ((_version_) & 0x3ff) -#define SCI_VERSION_IGNORE_PATCHLEVEL(_version_) ((_version) & ~0x3ff) - /* Version number guide: ** - Always use the version number of the first known version to have a special feature. ** - Don't assume that special feature changes are linked just because they appeared to change @@ -46,19 +38,9 @@ namespace Sci { ** - "FTU" means "First To Use" */ -#define SCI_VERSION_FTU_LOFS_ABSOLUTE SCI_VERSION(1,000,200) -/* First version known to do this: ? - In later versions (SCI1 and beyond), the argument of lofs[as] - instructions is absolute rather than relative. -*/ - #define SCI_VERSION_FTU_DOSOUND_VARIANT_2 SCI_VERSION(1,000,510) -typedef int sci_version_t; - -struct EngineState; - } // End of namespace Sci #endif // SCI_SCICORE_VERSIONS_H |