From 8af4cfd77251d66bdbc7383d16b5f4332b53a81f Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 26 Jul 2020 18:39:18 +0200 Subject: [PATCH] - skip all 3 parts of the E4 intro together. Fixes #39. --- source/games/duke/src/2d_d.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/games/duke/src/2d_d.cpp b/source/games/duke/src/2d_d.cpp index 488701309..66670d4e8 100644 --- a/source/games/duke/src/2d_d.cpp +++ b/source/games/duke/src/2d_d.cpp @@ -1022,8 +1022,8 @@ void e4intro(const CompletionFunc& completion) S_PlaySpecialMusic(MUS_BRIEFING); jobs[job++] = { PlayVideo("vol41a.anm", vol41a, framespeed_10), nullptr }; - jobs[job++] = { PlayVideo("vol42a.anm", vol42a, framespeed_14), nullptr }; - jobs[job++] = { PlayVideo("vol43a.anm", vol43a, framespeed_10), nullptr }; + jobs[job++] = { PlayVideo("vol42a.anm", vol42a, framespeed_14), nullptr, true }; + jobs[job++] = { PlayVideo("vol43a.anm", vol43a, framespeed_10), nullptr, true }; RunScreenJob(jobs, job, completion); }