aboutsummaryrefslogtreecommitdiff
path: root/saga/scene.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'saga/scene.cpp')
-rw-r--r--saga/scene.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/saga/scene.cpp b/saga/scene.cpp
index 58e41191bd..d9171871ae 100644
--- a/saga/scene.cpp
+++ b/saga/scene.cpp
@@ -599,7 +599,7 @@ int Scene::loadScene(int scene_num, int load_flag, SCENE_PROC scene_proc, SCENE_
event.code = PAL_EVENT;
event.op = EVENT_PALTOBLACK;
event.time = 0;
- event.duration = PALETTE_FADE_DURATION;
+ event.duration = kNormalFadeDuration;
event.data = current_pal;
q_event = _vm->_events->queue(&event);
@@ -642,7 +642,7 @@ int Scene::loadScene(int scene_num, int load_flag, SCENE_PROC scene_proc, SCENE_
event.code = PAL_EVENT;
event.op = EVENT_BLACKTOPAL;
event.time = 0;
- event.duration = PALETTE_FADE_DURATION;
+ event.duration = kNormalFadeDuration;
event.data = _bg.pal;
q_event = _vm->_events->chain(q_event, &event);