Skip to content

Commit

Permalink
fix unresolvable song assets when in ungrouped folder
Browse files Browse the repository at this point in the history
  • Loading branch information
poco0317 committed Jun 29, 2022
1 parent 05d88c9 commit bfe659c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Etterna/Singletons/SongManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@ SongManager::LoadStepManiaSongDir(std::string sDir, LoadingWindow* ld)
for (const auto& folder : songFolders) {
auto burp = sDir + folder;
if (IsSongDir(burp)) {
unknownGroup.songs.emplace_back(burp);
unknownGroup.songs.emplace_back("/" + burp);
} else {
auto group = Group(folder);
GetDirListing(sDir + folder + "/*", group.songs, true, true);
Expand Down

0 comments on commit bfe659c

Please sign in to comment.