From 75517ae813cbecbea0c95b99790e1ded4d5e8d99 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Thu, 26 Jul 2007 17:13:29 +0000 Subject: Only queue the IHNM company and title videos in the full version of IHNM, not the demo svn-id: r28217 --- engines/saga/ihnm_introproc.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'engines') diff --git a/engines/saga/ihnm_introproc.cpp b/engines/saga/ihnm_introproc.cpp index e122082322..40de389d0f 100644 --- a/engines/saga/ihnm_introproc.cpp +++ b/engines/saga/ihnm_introproc.cpp @@ -102,8 +102,11 @@ int Scene::IHNMStartProc() { n_introscenes = ARRAYSIZE(IHNM_IntroList); - for (i = 0; i < n_introscenes; i++) { - _vm->_scene->queueScene(&IHNM_IntroList[i]); + // Queue the company and title videos for the full version of IHNM + if (_vm->getGameId() != GID_IHNM_DEMO) { + for (i = 0; i < n_introscenes; i++) { + _vm->_scene->queueScene(&IHNM_IntroList[i]); + } } firstScene.loadFlag = kLoadBySceneNumber; -- cgit v1.2.3