From 5b76ab1ba9ee8afc13cb0d7adc2bc5d9c5cf54d7 Mon Sep 17 00:00:00 2001 From: Michael Votaw Date: Wed, 21 Feb 2024 17:09:09 -0600 Subject: [PATCH] Uncommenting these lines from the original #SONG parsing, because I'm not sure why I commented it out to begin with. --- src/CourseLoaderCRS.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CourseLoaderCRS.cpp b/src/CourseLoaderCRS.cpp index 8efac2cd2a..619e2af9af 100644 --- a/src/CourseLoaderCRS.cpp +++ b/src/CourseLoaderCRS.cpp @@ -421,12 +421,12 @@ bool CourseLoaderCRS::ParseCourseSong( const MsdFile::value_t &sParams, CourseEn } else if( sParams[1] == "*" ) { - //new_entry.bSecret = true; + new_entry.bSecret = true; } // group random else if( sParams[1].Right(1) == "*" ) { - //new_entry.bSecret = true; + new_entry.bSecret = true; RString sSong = sParams[1]; sSong.Replace( "\\", "/" ); std::vector bits;