diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/saga/interface.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/saga/interface.cpp b/engines/saga/interface.cpp index 5d93807da1..423c187450 100644 --- a/engines/saga/interface.cpp +++ b/engines/saga/interface.cpp @@ -656,6 +656,10 @@ void Interface::setStatusText(const char *text, int statusColor) { if (_vm->getGameType() == GType_IHNM && _vm->_scene->currentChapterNumber() == 8) return; + // Disable the status text in the IHNM demo + if (_vm->getGameId() == GID_IHNM_DEMO) + return; + assert(text != NULL); assert(strlen(text) < STATUS_TEXT_LEN); |