aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sci.h
diff options
context:
space:
mode:
authorWalter van Niftrik2009-08-16 19:18:19 +0000
committerWalter van Niftrik2009-08-16 19:18:19 +0000
commit00f4794c0a0168a86d7e58e3f585f7fa4d02c7c9 (patch)
tree44f0da44eb3c80367c1921d763c99ffe3be15a42 /engines/sci/sci.h
parent582eb13fa2680a60ac5d1770c450fabfbc15a1b5 (diff)
downloadscummvm-rg350-00f4794c0a0168a86d7e58e3f585f7fa4d02c7c9.tar.gz
scummvm-rg350-00f4794c0a0168a86d7e58e3f585f7fa4d02c7c9.tar.bz2
scummvm-rg350-00f4794c0a0168a86d7e58e3f585f7fa4d02c7c9.zip
SCI: Stage 1 of the game detection overhaul. The end goal is to autodetect
as much as possible. All SCI_VERSION_* information was removed from detection.cpp (much of it was incorrect anyway). svn-id: r43449
Diffstat (limited to 'engines/sci/sci.h')
-rw-r--r--engines/sci/sci.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/sci.h b/engines/sci/sci.h
index 43c0b9f8f8..4781af5870 100644
--- a/engines/sci/sci.h
+++ b/engines/sci/sci.h
@@ -66,10 +66,9 @@ enum kDebugLevels {
struct SciGameDescription {
ADGameDescription desc;
uint32 flags;
- SciVersion version;
};
-extern const char *versionNames[6];
+extern const char *versionNames[];
enum SciGameFlags {
// SCI0 flags
@@ -113,6 +112,7 @@ public:
private:
const SciGameDescription *_gameDescription;
+ SciVersion _version;
ResourceManager *_resmgr;
EngineState *_gamestate;
Kernel *_kernel;