Let compiled subengines be visible in About dialog.
svn-id: r35677
This commit is contained in:
parent
8467dc7361
commit
007c39a84d
2 changed files with 36 additions and 2 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue