mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 03:30:46 +00:00
- Duke: fixed some incorrect cutscene playback speeds.
This commit is contained in:
parent
0e82d75325
commit
2e451618f8
1 changed files with 3 additions and 3 deletions
|
@ -140,7 +140,7 @@ class DukeCutscenes // Note: must be class, not struct, otherwise we cannot easi
|
||||||
20, DukeSnd.VOL4ENDSND1+1,
|
20, DukeSnd.VOL4ENDSND1+1,
|
||||||
39, DukeSnd.VOL4ENDSND2+1,
|
39, DukeSnd.VOL4ENDSND2+1,
|
||||||
50, -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(
|
soundinfo.Pushv(
|
||||||
1, DukeSnd.BOSS4_DEADSPEECH+1,
|
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,
|
7, DukeSnd.INTRO4_3 + 1,
|
||||||
12, DukeSnd.INTRO4_2 + 1,
|
12, DukeSnd.INTRO4_2 + 1,
|
||||||
26, DukeSnd.INTRO4_4 + 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(
|
soundinfo.Pushv(
|
||||||
1, DukeSnd.INTRO4_B + 1,
|
1, DukeSnd.INTRO4_B + 1,
|
||||||
12, DukeSnd.SHORT_CIRCUIT + 1,
|
12, DukeSnd.SHORT_CIRCUIT + 1,
|
||||||
18, DukeSnd.INTRO4_5 + 1,
|
18, DukeSnd.INTRO4_5 + 1,
|
||||||
34, DukeSnd.SHORT_CIRCUIT + 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;
|
if (m) m.skipover = true;
|
||||||
runner.Append(m);
|
runner.Append(m);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue