fixes the chart editor
This commit is contained in:
parent
a717bd1de9
commit
fcc6ae72a5
@ -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;
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user