From 5d3e7a2eb186c5e97a607c5e024c38ae2eb92577 Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 1 Nov 2020 18:04:23 +1000 Subject: [PATCH] Don't attempt to play "welcome" announcement, as it does not exist --- qcsrc/menu/menu.qc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/qcsrc/menu/menu.qc b/qcsrc/menu/menu.qc index 84caecb75..cb61d3943 100644 --- a/qcsrc/menu/menu.qc +++ b/qcsrc/menu/menu.qc @@ -708,7 +708,9 @@ void m_draw(float width, float height) menuNotTheFirstFrame = true; if (Menu_Active && !cvar("menu_video_played")) { - localcmd("cd loop $menu_cdtrack; play sound/announcer/default/welcome.wav\n"); + localcmd("cd loop $menu_cdtrack\n"); + // TODO: use this when we have a welcome sound + //localcmd("cd loop $menu_cdtrack; play sound/announcer/default/welcome.wav\n"); menuLogoAlpha = -0.8; // no idea why, but when I start this at zero, it jumps instead of fading FIXME } // ALWAYS set this cvar; if we start but menu is not active, this means we want no background music! -- 2.39.2