diff options
author | Max Horn | 2008-03-14 17:31:04 +0000 |
---|---|---|
committer | Max Horn | 2008-03-14 17:31:04 +0000 |
commit | 6547ef6e129fb42c75c20f24e1f24dff1458f727 (patch) | |
tree | 95cdbfad275c76a32608d1a8b414e6824fe47091 /engines/touche | |
parent | aa8105011748674313e7bf19e23ea8f2ee90c7aa (diff) | |
download | scummvm-rg350-6547ef6e129fb42c75c20f24e1f24dff1458f727.tar.gz scummvm-rg350-6547ef6e129fb42c75c20f24e1f24dff1458f727.tar.bz2 scummvm-rg350-6547ef6e129fb42c75c20f24e1f24dff1458f727.zip |
Started to get rid of Common::EncapsulatedADGameDesc (using plain Common::ADGameDescription instead)
svn-id: r31121
Diffstat (limited to 'engines/touche')
-rw-r--r-- | engines/touche/detection.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/touche/detection.cpp b/engines/touche/detection.cpp index 2fde7e9da1..2277adf6f6 100644 --- a/engines/touche/detection.cpp +++ b/engines/touche/detection.cpp @@ -135,11 +135,11 @@ public: return "Touche: The Adventures of the 5th Musketeer (C) Clipper Software"; } - virtual bool createInstance(OSystem *syst, Engine **engine, const Common::EncapsulatedADGameDesc &encapsulatedDesc) const; + virtual bool createInstance(OSystem *syst, Engine **engine, const Common::ADGameDescription *desc) const; }; -bool ToucheMetaEngine::createInstance(OSystem *syst, Engine **engine, const Common::EncapsulatedADGameDesc &encapsulatedDesc) const { - const Common::ADGameDescription *gd = encapsulatedDesc.realDesc; +bool ToucheMetaEngine::createInstance(OSystem *syst, Engine **engine, const Common::ADGameDescription *desc) const { + const Common::ADGameDescription *gd = desc; if (gd) { *engine = new Touche::ToucheEngine(syst, gd->language); } |