1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-11 20:57:20 +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:
Cameron Taylor 2023-08-01 15:34:24 -04:00
commit 20658e0590
2 changed files with 4 additions and 4 deletions

View file

@ -77,7 +77,7 @@ class ModuleHandler
}
else
{
return SortUtil.alphabetical(a, b);
return SortUtil.alphabetically(a, b);
}
});
}

View file

@ -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.