Skip to content

Commit

Permalink
oeurhfehriufer
Browse files Browse the repository at this point in the history
  • Loading branch information
Burgerballs committed Apr 5, 2024
1 parent 3509304 commit bbe5f8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/backend/Difficulty.hx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class Difficulty
{
if(num == null) num = PlayState.storyDifficulty;

var filePostfix:String = list[num];
if(Paths.formatToSongPath(filePostfix) != Paths.formatToSongPath(defaultDifficulty))
var filePostfix:String = list[num].toLowerCase();
if(Paths.formatToSongPath(filePostfix) != Paths.formatToSongPath(defaultDifficulty).toLowerCase())
{
filePostfix = '-' + filePostfix;
}
Expand Down

0 comments on commit bbe5f8c

Please sign in to comment.