diff options
Diffstat (limited to 'engines/gargoyle/detection.cpp')
-rw-r--r-- | engines/gargoyle/detection.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/gargoyle/detection.cpp b/engines/gargoyle/detection.cpp index 94fb90f3c4..f10a70bdc6 100644 --- a/engines/gargoyle/detection.cpp +++ b/engines/gargoyle/detection.cpp @@ -37,6 +37,7 @@ namespace Gargoyle { struct GargoyleGameDescription { ADGameDescription desc; + InterpreterType interpType; }; uint32 GargoyleEngine::getFeatures() const { @@ -51,6 +52,10 @@ Common::Language GargoyleEngine::getLanguage() const { return _gameDescription->desc.language; } +InterpreterType GargoyleEngine::getInterpreterType() const { + return _gameDescription->interpType; +} + } // End of namespace Gargoyle static const PlainGameDescriptor GargoyleGames[] = { |