diff options
author | Bastien Bouclet | 2016-09-15 18:23:35 +0200 |
---|---|---|
committer | Bastien Bouclet | 2019-11-03 11:43:00 +0100 |
commit | 4b42112721a3a12ee10652f2c1dfcd227ab140b3 (patch) | |
tree | 95e6dfaa76e7dfa3564822489698b5f7cb69d8a0 /engines/macventure | |
parent | 6f1515abe8fd68e6ff643541f6c23a6f822ad935 (diff) | |
download | scummvm-rg350-4b42112721a3a12ee10652f2c1dfcd227ab140b3.tar.gz scummvm-rg350-4b42112721a3a12ee10652f2c1dfcd227ab140b3.tar.bz2 scummvm-rg350-4b42112721a3a12ee10652f2c1dfcd227ab140b3.zip |
ENGINES: Add an engine ID to all the engines
Diffstat (limited to 'engines/macventure')
-rw-r--r-- | engines/macventure/detection.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/engines/macventure/detection.cpp b/engines/macventure/detection.cpp index 007c59922b..5c419e8934 100644 --- a/engines/macventure/detection.cpp +++ b/engines/macventure/detection.cpp @@ -66,7 +66,16 @@ public: const char *getName() const { return "MacVenture"; } - const char *getOriginalCopyright() const { + + const char *getEngineId() const override { + return "macventure"; + } + + const char *getName() const override { + return "MacVenture"; + } + + const char *getOriginalCopyright() const override { return "(C) ICOM Simulations"; } |