diff options
author | Andrew Kurushin | 2005-01-16 19:43:28 +0000 |
---|---|---|
committer | Andrew Kurushin | 2005-01-16 19:43:28 +0000 |
commit | a230f60694c9b4cf43b263405af40c4f6adb9fec (patch) | |
tree | 9f956fd01b7ac1ea5365ab6ccf16dd2ac6952565 | |
parent | f9b4b2cd99000d57dfbcad9efc2927514e0f8d4e (diff) | |
download | scummvm-rg350-a230f60694c9b4cf43b263405af40c4f6adb9fec.tar.gz scummvm-rg350-a230f60694c9b4cf43b263405af40c4f6adb9fec.tar.bz2 scummvm-rg350-a230f60694c9b4cf43b263405af40c4f6adb9fec.zip |
- some fix to previous
svn-id: r16575
-rw-r--r-- | saga/scene.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/saga/scene.cpp b/saga/scene.cpp index c12430e87b..179b2ebbfa 100644 --- a/saga/scene.cpp +++ b/saga/scene.cpp @@ -232,7 +232,7 @@ int Scene::nextScene() { scene_qdat = queueIterator.operator->(); assert(scene_qdat != NULL); - loadScene(scene_qdat->scene_n, scene_qdat->load_flag, scene_qdat->scene_proc, scene_qdat->sceneDescription, scene_qdat->fadeType, 0); + loadScene(scene_qdat->scene_n, scene_qdat->load_flag, scene_qdat->scene_proc, scene_qdat->sceneDescription, scene_qdat->fadeType, -1); return SUCCESS; } |