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/saga | |
| 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/saga')
| -rw-r--r-- | engines/saga/detection.cpp | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/engines/saga/detection.cpp b/engines/saga/detection.cpp index ab0af56cf5..ecda829d09 100644 --- a/engines/saga/detection.cpp +++ b/engines/saga/detection.cpp @@ -143,7 +143,25 @@ public: SagaMetaEngine() : Common::AdvancedMetaEngine(detectionParams) {} virtual const char *getName() const { - return "Saga engine"; + return "Saga engine [" + +#if defined(ENABLE_IHNM) && defined(ENABLE_SAGA2) + "all games" +#else + "ITE" + +#if defined(ENABLE_IHNM) + ", IHNM" +#endif + +#if defined(ENABLE_SAGA2) + ", SAGA2 games" +#endif + +#endif + "]"; + +; } virtual const char *getCopyright() const { |
