From 978a1f6a056f5fac9d3dcea8f4ce22605f1b302a Mon Sep 17 00:00:00 2001 From: Justin Marshall Date: Mon, 3 Aug 2020 14:33:24 -0700 Subject: [PATCH] Fixed a bug were the briefing screen would trigger for skirmish games. --- code/redalert/scenario.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/redalert/scenario.cpp b/code/redalert/scenario.cpp index f9f4138..446aadc 100644 --- a/code/redalert/scenario.cpp +++ b/code/redalert/scenario.cpp @@ -402,7 +402,7 @@ bool Start_Scenario(char * name, bool briefing) /* ** If there's no briefing movie, restate the mission at the beginning. */ - if (!Debug_SkipBriefing) + if (!Debug_SkipBriefing && Session.Type != GAME_SKIRMISH) { RenderBriefing(); }