mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-12-27 15:37:49 +00:00
Merge branch 'feature/chart-editor-bpm' of https://github.com/ninjamuffin99/Funkin-secret into feature/chart-editor-bpm
This commit is contained in:
commit
20658e0590
|
@ -77,7 +77,7 @@ class ModuleHandler
|
|||
}
|
||||
else
|
||||
{
|
||||
return SortUtil.alphabetical(a, b);
|
||||
return SortUtil.alphabetically(a, b);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
@ -160,17 +160,17 @@ class Constants
|
|||
/**
|
||||
* The maximum interval within which a note can be hit, in milliseconds.
|
||||
*/
|
||||
public static final HIT_WINDOW_MS:Float = 160;
|
||||
public static final HIT_WINDOW_MS:Float = 160.0;
|
||||
|
||||
/**
|
||||
* Constant for the number of seconds in a minute.
|
||||
*/
|
||||
public static final SECS_PER_MIN:Float = 60;
|
||||
public static final SECS_PER_MIN:Int = 60;
|
||||
|
||||
/**
|
||||
* Constant for the number of milliseconds in a second.
|
||||
*/
|
||||
public static final MS_PER_SEC:Float = 1000;
|
||||
public static final MS_PER_SEC:Int = 1000;
|
||||
|
||||
/**
|
||||
* The number of microseconds in a millisecond.
|
||||
|
|
Loading…
Reference in a new issue