diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/pegasus/pegasus.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/pegasus/pegasus.cpp b/engines/pegasus/pegasus.cpp index 14e7ff4d30..be5a22eeed 100644 --- a/engines/pegasus/pegasus.cpp +++ b/engines/pegasus/pegasus.cpp @@ -520,6 +520,8 @@ void PegasusEngine::receiveNotification(Notification *notification, const tNotif #else if (!isDemo()) runIntro(); + else + showTempScreen("Images/Demo/NGsplashScrn.pict"); if (shouldQuit()) return; @@ -606,6 +608,8 @@ void PegasusEngine::doGameMenuCommand(const tGameMenuCommand command) { } break; case kMenuCmdQuit: + if (isDemo()) + showTempScreen("Images/Demo/NGquitScrn.pict"); _system->quit(); break; case kMenuCmdOverview: |