Skip to content

Commit

Permalink
I forgot that song packs existed
Browse files Browse the repository at this point in the history
  • Loading branch information
EliteAsian123 committed May 9, 2023
1 parent 9cc8679 commit ce94cee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Assets/Script/Song/Scanning/SongScanThread.cs
Original file line number Diff line number Diff line change
Expand Up @@ -164,15 +164,15 @@ private void ScanSubDirectory(string cacheFolder, string subDir, ICollection<Son
_songsScanned++;
songsScanned = _songsScanned;
songs.Add(file);
return;
break;
case ScanResult.NotASong:
break;
default:
_errorsEncountered++;
errorsEncountered = _errorsEncountered;
_songErrors[cacheFolder].Add(new SongError(subDir, ExCONResult));
Debug.LogWarning($"Error encountered with {subDir}");
return;
break;
}
}

Expand All @@ -199,15 +199,15 @@ private void ScanSubDirectory(string cacheFolder, string subDir, ICollection<Son
_songsScanned++;
songsScanned = _songsScanned;
songs.Add(SongInsideCON);
return;
break;
case ScanResult.NotASong:
break;
default:
_errorsEncountered++;
errorsEncountered = _errorsEncountered;
_songErrors[cacheFolder].Add(new SongError(subDir, CONResult));
Debug.LogWarning($"Error encountered with {subDir}");
return;
break;
}
}
}
Expand Down

0 comments on commit ce94cee

Please sign in to comment.