diff options
author | Eugene Sandulenko | 2009-01-02 18:20:15 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2009-01-02 18:20:15 +0000 |
commit | 007c39a84d4af104a4778ebb8afd9de2dc52cede (patch) | |
tree | 69eb967ca95ad15fbae2e8ec3c8453dd2b85e81e /engines/scumm | |
parent | 8467dc73612a6809ab4ee21fb2f2cd3d5eef4271 (diff) | |
download | scummvm-rg350-007c39a84d4af104a4778ebb8afd9de2dc52cede.tar.gz scummvm-rg350-007c39a84d4af104a4778ebb8afd9de2dc52cede.tar.bz2 scummvm-rg350-007c39a84d4af104a4778ebb8afd9de2dc52cede.zip |
Let compiled subengines be visible in About dialog.
svn-id: r35677
Diffstat (limited to 'engines/scumm')
-rw-r--r-- | engines/scumm/detection.cpp | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/engines/scumm/detection.cpp b/engines/scumm/detection.cpp index d9db5fc574..4855550351 100644 --- a/engines/scumm/detection.cpp +++ b/engines/scumm/detection.cpp @@ -956,7 +956,23 @@ Common::Error ScummMetaEngine::createInstance(OSystem *syst, Engine **engine) co } const char *ScummMetaEngine::getName() const { - return "Scumm Engine"; + return "SCUMM Engine [" + +#if defined(ENABLE_SCUMM_7_8) && defined(ENABLE_HE) + "all games" +#else + + "v0-v6 games" + +#if defined(ENABLE_SCUMM_7_8) + ", v7 & v8 games" +#endif +#if defined(ENABLE_HE) + ", HE71+ games" +#endif + +#endif + "]"; } const char *ScummMetaEngine::getCopyright() const { |