diff options
author | Johannes Schickel | 2013-05-27 23:32:50 +0200 |
---|---|---|
committer | Johannes Schickel | 2013-05-27 23:34:14 +0200 |
commit | d409d07677162878ae1c44f8d6ca8995896a72ac (patch) | |
tree | 58e4336f3f56e7ff334b05af78a7cb8667cedf36 | |
parent | 753d5e8922eb0d7a10e6d505e7ad59ff34b1e3b7 (diff) | |
download | scummvm-rg350-d409d07677162878ae1c44f8d6ca8995896a72ac.tar.gz scummvm-rg350-d409d07677162878ae1c44f8d6ca8995896a72ac.tar.bz2 scummvm-rg350-d409d07677162878ae1c44f8d6ca8995896a72ac.zip |
CGE: Pass proper size of detection entries to AdvancedMetaEngine code.
This was forgotten to update in 0d50c67a3e4790d9e3d4b5ba13c7c0975b9ac2e0.
-rw-r--r-- | engines/cge/detection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cge/detection.cpp b/engines/cge/detection.cpp index 4663b6b4af..d29c1224fd 100644 --- a/engines/cge/detection.cpp +++ b/engines/cge/detection.cpp @@ -141,7 +141,7 @@ static const ADFileBasedFallback fileBasedFallback[] = { class CGEMetaEngine : public AdvancedMetaEngine { public: - CGEMetaEngine() : AdvancedMetaEngine(CGE::gameDescriptions, sizeof(ADGameDescription), CGEGames) { + CGEMetaEngine() : AdvancedMetaEngine(CGE::gameDescriptions, sizeof(CGE::CgeGameDescription), CGEGames) { _singleid = "soltys"; } |