diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-04-11 12:21:21 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-04-11 12:21:21 +0200 |
commit | 0ddc04743cf119751e61ad7bec73b721116b3c03 (patch) | |
tree | 75bf39c19b98c2320aa14388bc81af2b905b94b0 /src/animation | |
parent | fixing r* visioned leak (diff) | |
download | re3-0ddc04743cf119751e61ad7bec73b721116b3c03.tar re3-0ddc04743cf119751e61ad7bec73b721116b3c03.tar.gz re3-0ddc04743cf119751e61ad7bec73b721116b3c03.tar.bz2 re3-0ddc04743cf119751e61ad7bec73b721116b3c03.tar.lz re3-0ddc04743cf119751e61ad7bec73b721116b3c03.tar.xz re3-0ddc04743cf119751e61ad7bec73b721116b3c03.tar.zst re3-0ddc04743cf119751e61ad7bec73b721116b3c03.zip |
Diffstat (limited to 'src/animation')
-rw-r--r-- | src/animation/CutsceneMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/animation/CutsceneMgr.cpp b/src/animation/CutsceneMgr.cpp index 0e35599b..6f8e9790 100644 --- a/src/animation/CutsceneMgr.cpp +++ b/src/animation/CutsceneMgr.cpp @@ -410,7 +410,7 @@ CCutsceneMgr::Update(void) if (!ms_running) return; - ms_cutsceneTimer += CTimer::GetTimeStepNonClipped() * 0.02f; + ms_cutsceneTimer += CTimer::GetTimeStepNonClippedInSeconds(); if (CGeneral::faststricmp(ms_cutsceneName, "end") && TheCamera.Cams[TheCamera.ActiveCam].Mode == CCam::MODE_FLYBY && ms_cutsceneLoadStatus == CUTSCENE_LOADING_0) { if (CPad::GetPad(0)->GetCrossJustDown() || (CGame::playingIntro && CPad::GetPad(0)->GetStartJustDown()) |