aboutsummaryrefslogtreecommitdiff
path: root/saga/ite_introproc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'saga/ite_introproc.cpp')
-rw-r--r--saga/ite_introproc.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/saga/ite_introproc.cpp b/saga/ite_introproc.cpp
index bb48ffe54c..5caa7286ea 100644
--- a/saga/ite_introproc.cpp
+++ b/saga/ite_introproc.cpp
@@ -126,12 +126,15 @@ int Scene::ITEStartProc() {
size_t i;
SCENE_QUEUE first_scene;
+ SCENE_QUEUE tempScene;
GAME_SCENEDESC gs_desc;
n_introscenes = ARRAYSIZE(ITE_IntroList);
for (i = 0; i < n_introscenes; i++) {
- _vm->_scene->queueScene(&ITE_IntroList[i]);
+ tempScene = ITE_IntroList[i];
+ tempScene.scene_n = RSC_ConvertID(tempScene.scene_n);
+ _vm->_scene->queueScene(&tempScene);
}
GAME_GetSceneInfo(&gs_desc);