From 2e451618f8137e96938383b1e44f798ecb5ff4e0 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 30 Aug 2021 15:17:00 +0200 Subject: [PATCH] - Duke: fixed some incorrect cutscene playback speeds. --- wadsrc/static/zscript/games/duke/ui/cutscenes.zs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wadsrc/static/zscript/games/duke/ui/cutscenes.zs b/wadsrc/static/zscript/games/duke/ui/cutscenes.zs index 48be21039..398362d24 100644 --- a/wadsrc/static/zscript/games/duke/ui/cutscenes.zs +++ b/wadsrc/static/zscript/games/duke/ui/cutscenes.zs @@ -140,7 +140,7 @@ class DukeCutscenes // Note: must be class, not struct, otherwise we cannot easi 20, DukeSnd.VOL4ENDSND1+1, 39, DukeSnd.VOL4ENDSND2+1, 50, -1); - runner.Append(MoviePlayerJob.CreateWithSoundinfo("vol4e2.anm", soundinfo, 0, 10, 10, 10)); + runner.Append(MoviePlayerJob.CreateWithSoundinfo("vol4e2.anm", soundinfo, 0, 14, 14, 14)); soundinfo.Pushv( 1, DukeSnd.BOSS4_DEADSPEECH+1, @@ -181,14 +181,14 @@ class DukeCutscenes // Note: must be class, not struct, otherwise we cannot easi 7, DukeSnd.INTRO4_3 + 1, 12, DukeSnd.INTRO4_2 + 1, 26, DukeSnd.INTRO4_4 + 1); - runner.Append(MoviePlayerJob.CreateWithSoundinfo("vol41a.anm", soundinfo, MoviePlayer.NOSOUNDCUTOFF, 10, 10, 10)); + runner.Append(MoviePlayerJob.CreateWithSoundinfo("vol41a.anm", soundinfo, MoviePlayer.NOSOUNDCUTOFF, 14, 14, 14)); soundinfo.Pushv( 1, DukeSnd.INTRO4_B + 1, 12, DukeSnd.SHORT_CIRCUIT + 1, 18, DukeSnd.INTRO4_5 + 1, 34, DukeSnd.SHORT_CIRCUIT + 1); - let m = MoviePlayerJob.CreateWithSoundinfo("vol42a.anm", soundinfo, MoviePlayer.NOSOUNDCUTOFF, 14, 14, 14); + let m = MoviePlayerJob.CreateWithSoundinfo("vol42a.anm", soundinfo, MoviePlayer.NOSOUNDCUTOFF, 18, 18, 18); if (m) m.skipover = true; runner.Append(m);