From 7af53ac935207611ed42b473a9c2b55eaa6eee53 Mon Sep 17 00:00:00 2001 From: Taylor Richards Date: Mon, 7 Aug 2017 14:59:15 -0400 Subject: [PATCH] fix crash in debug builds --- src/gamesnd/eventmusic.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gamesnd/eventmusic.cpp b/src/gamesnd/eventmusic.cpp index 7eadb55..5c5b40f 100644 --- a/src/gamesnd/eventmusic.cpp +++ b/src/gamesnd/eventmusic.cpp @@ -222,7 +222,7 @@ const char* Pattern_names[MAX_PATTERNS] = "EARV_2", // Enemy Arrival 2 "VICT_1", // Victory Song 1 "VICT_2", // Victory Song 2 - "FAIL_1" // Goal Failed 1 + "FAIL_1", // Goal Failed 1 "DEAD_1" // Death Song 1 //XSTR:ON }; @@ -244,7 +244,7 @@ const char* Pattern_description[MAX_PATTERNS] = "enemey arrival 2", "victory 1", "victory 2", - "goal failed 1" + "goal failed 1", "death " //XSTR:ON }; -- 2.39.2