Only check for songs if we're using a memory card

This commit is contained in:
Crash Cringle
2025-03-22 11:08:53 -04:00
committed by teejusb
parent 7d5a62a537
commit ce7cef6d90
+1 -1
View File
@@ -1194,7 +1194,7 @@ void Profile::LoadSongsFromDir(RString const& dir, ProfileSlot prof_slot, bool i
return;
}
RString songs_folder= dir + "Songs";
if(FILEMAN->DoesFileExist(songs_folder))
if(FILEMAN->DoesFileExist(songs_folder) && isMemoryCard)
{
LOG->Trace("Found songs folder in profile.");
std::vector<RString> song_folders;