Skip to content

Commit

Permalink
fix difficulty song files
Browse files Browse the repository at this point in the history
  • Loading branch information
Vortex2Oblivion committed Nov 20, 2024
1 parent fa9f0d1 commit 98535e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/Paths.hx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class Paths {
if (Assets.exists('$voicesPath$voicesFile-erect.ogg'))
voicesFile += '-erect';
}
if (Assets.exists('Voices-$difficulty.ogg'))
if (Assets.exists('$voicesPath$voicesFile-$difficulty.ogg'))
voicesFile += '-$difficulty';
}

Expand All @@ -163,7 +163,7 @@ class Paths {
if (Assets.exists('$instPath$instFile-erect.ogg'))
instFile += '-erect';
}
if (Assets.exists('Inst-$difficulty.ogg'))
if (Assets.exists('$instPath$instFile-$difficulty.ogg'))
instFile += '-$difficulty';
}

Expand Down

0 comments on commit 98535e9

Please sign in to comment.