From 463ad58e9173b0ec19545cd1e81e9cd6507a89a6 Mon Sep 17 00:00:00 2001 From: Martin Natano Date: Thu, 9 Jun 2022 17:57:38 +0200 Subject: [PATCH] Make sure SM profiles are loaded from USB This changes the defaults to this: MemoryCardProfileSubdir=ITGmania MemoryCardProfileImportSubdirs=StepMania 5.1;StepMania 5 --- src/ProfileManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ProfileManager.cpp b/src/ProfileManager.cpp index a113fb0960..df4c904daa 100644 --- a/src/ProfileManager.cpp +++ b/src/ProfileManager.cpp @@ -49,7 +49,7 @@ const RString LAST_GOOD_SUBDIR = "LastGood/"; // Directories to search for a profile if m_sMemoryCardProfileSubdir doesn't // exist, separated by ";": -static Preference g_sMemoryCardProfileImportSubdirs( "MemoryCardProfileImportSubdirs", "" ); +static Preference g_sMemoryCardProfileImportSubdirs( "MemoryCardProfileImportSubdirs", "StepMania 5.1;StepMania 5;In The Groove 2" ); static RString LocalProfileIDToDir( const RString &sProfileID ) { return USER_PROFILES_DIR + sProfileID + "/"; } static RString LocalProfileDirToID( const RString &sDir ) { return Basename( sDir ); }