diff --git a/source/Note.hx b/source/Note.hx index f7f915e..1eb3977 100644 --- a/source/Note.hx +++ b/source/Note.hx @@ -50,7 +50,7 @@ class Note extends FlxSprite x += 50; // MAKE SURE ITS DEFINITELY OFF SCREEN? y -= 2000; - this.strumTime = Math.round(strumTime); + this.strumTime = strumTime; if (this.strumTime < 0 ) this.strumTime = 0; diff --git a/source/PlayState.hx b/source/PlayState.hx index 594577a..eea9212 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -1475,7 +1475,7 @@ class PlayState extends MusicBeatState for (songNotes in section.sectionNotes) { - var daStrumTime:Float = songNotes[0] + FlxG.save.data.offset + songOffset; + var daStrumTime:Float = Math.round(songNotes[0]) + FlxG.save.data.offset + songOffset; if (daStrumTime < 0) daStrumTime = 0; var daNoteData:Int = Std.int(songNotes[1] % 4);