Skip to content

Commit

Permalink
Merge pull request #32 from nebulazorua/master
Browse files Browse the repository at this point in the history
fixed quants being broken w/ offsets
  • Loading branch information
Yoshubs authored Sep 14, 2021
2 parents 0f510f1 + debb6e7 commit 927deda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/gameFolder/gameObjects/Note.hx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ class Note extends FNFSprite
// please generate this ahead of time and put into array :)
// I dont think I will im scared of those
final quantTime = (measureTime / quantArray[quant]);
if ((strumTime + smallestDeviation) % quantTime < smallestDeviation * 2)
if ((strumTime + Init.trueSettings['Offset'] + smallestDeviation) % quantTime < smallestDeviation * 2)
{
// here it is, the quant, finally!
newNote.noteQuant = quant;
Expand Down

0 comments on commit 927deda

Please sign in to comment.