Skip to content

Commit c2e0250

Browse files
Fix an issue with quant colors when offsets are brought into play
Closes #928
1 parent 5be1bb8 commit c2e0250

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/Note.hx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,6 @@ class Note extends FlxSprite
604604
}
605605

606606
strumTime = chartNoteData.strumTime;
607-
if(!inEditor) strumTime += ClientPrefs.noteOffset;
608607
noteData = chartNoteData.noteData % 4;
609608
noteType = chartNoteData.noteType;
610609
animSuffix = chartNoteData.animSuffix;
@@ -634,6 +633,8 @@ class Note extends FlxSprite
634633
updateRGBColors();
635634
}
636635

636+
if(!inEditor) strumTime += ClientPrefs.noteOffset;
637+
637638
if (noteType == 'Hurt Note' && !ClientPrefs.enableColorShader)
638639
{
639640
texture = 'HURTNOTE_assets';

0 commit comments

Comments
 (0)