Skip to content

Commit 25fd99b

Browse files
authored
Enlarge Sustain with Quantization in Chart Editor (#956)
1 parent 07d4126 commit 25fd99b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/funkin/editors/charter/Charter.hx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2263,12 +2263,12 @@ class Charter extends UIState {
22632263

22642264
inline function _note_addsustain(t) {
22652265
UIState.playEditorSound(Flags.DEFAULT_CHARTER_SUSTAINADD_SOUND);
2266-
changeNoteSustain(1);
2266+
changeNoteSustain(16/quant);
22672267
}
22682268

22692269
inline function _note_subtractsustain(t) {
22702270
UIState.playEditorSound(Flags.DEFAULT_CHARTER_SUSTAINDELETE_SOUND);
2271-
changeNoteSustain(-1);
2271+
changeNoteSustain(-16/quant);
22722272
}
22732273

22742274
function _note_selectall(_) {

0 commit comments

Comments
 (0)