From 63622cb2ddaf2a6bb19fc1fe2837c68bd6a47aaa Mon Sep 17 00:00:00 2001
From: Inuyasha <MattWCSTRFAN@gmail.com>
Date: Sun, 13 Nov 2016 13:55:32 -0800
Subject: [PATCH] Update new music cues to use correct names

---
 src/p_inter.c | 12 ++----------
 1 file changed, 2 insertions(+), 10 deletions(-)

diff --git a/src/p_inter.c b/src/p_inter.c
index 26db656ad9..6ad04f4776 100644
--- a/src/p_inter.c
+++ b/src/p_inter.c
@@ -253,12 +253,8 @@ void P_DoMatchSuper(player_t *player)
 	{
 		S_StopMusic();
 		if (mariomode)
-		{
-			S_ChangeMusicInternal("minvnc", false);
 			G_GhostAddColor(GHC_INVINCIBLE);
-		}
-		else
-			S_ChangeMusicInternal("invinc", false);
+		S_ChangeMusicInternal((mariomode) ? "_minv" : "_inv", false);
 	}
 
 	// Also steal 50 points from every enemy, sealing your victory.
@@ -278,12 +274,8 @@ void P_DoMatchSuper(player_t *player)
 				{
 					S_StopMusic();
 					if (mariomode)
-					{
-						S_ChangeMusicInternal("minvnc", false);
 						G_GhostAddColor(GHC_INVINCIBLE);
-					}
-					else
-						S_ChangeMusicInternal("invinc", false);
+					S_ChangeMusicInternal((mariomode) ? "_minv" : "_inv", false);
 				}
 			}
 }
-- 
GitLab