From 16a25cd7fdc48e192b2a97de8a23dd0e83bc09bc Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Wed, 28 Sep 2011 21:07:51 -0400 Subject: PEGASUS: Start the demo off! Only the jump-in video is currently shown though. For some reason, the input is disabled... --- engines/pegasus/pegasus.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/engines/pegasus/pegasus.cpp b/engines/pegasus/pegasus.cpp index a608eae254..ddc13d7a34 100644 --- a/engines/pegasus/pegasus.cpp +++ b/engines/pegasus/pegasus.cpp @@ -575,7 +575,13 @@ void PegasusEngine::doGameMenuCommand(const tGameMenuCommand command) { switch (command) { case kMenuCmdStartAdventure: GameState.setWalkthroughMode(false); - error("Start new game (adventure mode)"); + + // Only start the game in the demo for now + // (until it works and I implement Caldoria) + if (isDemo()) + startNewGame(); + else + error("Start new game (adventure mode)"); break; case kMenuCmdCredits: if (isDemo()) { -- cgit v1.2.3