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

This commit is contained in:
Crash Cringle
2025-03-22 12:02:04 -07: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; return;
} }
RString songs_folder= dir + "Songs"; RString songs_folder= dir + "Songs";
if(FILEMAN->DoesFileExist(songs_folder)) if(FILEMAN->DoesFileExist(songs_folder) && isMemoryCard)
{ {
LOG->Trace("Found songs folder in profile."); LOG->Trace("Found songs folder in profile.");
std::vector<RString> song_folders; std::vector<RString> song_folders;