GUI: fix code typo

This commit is contained in:
tildearrow 2022-02-12 02:53:18 -05:00
parent 41afe7386c
commit cc9e0c0f57
1 changed files with 2 additions and 2 deletions

View File

@ -7897,13 +7897,13 @@ void FurnaceGUI::parseKeybinds() {
}
}
for (int i=GUI_ACTION_WAVE_LIST_MIN+1; i<GUI_ACTION_INS_LIST_MAX; i++) {
for (int i=GUI_ACTION_WAVE_LIST_MIN+1; i<GUI_ACTION_WAVE_LIST_MAX; i++) {
if (actionKeys[i]&FURK_MASK) {
actionMapWaveList[actionKeys[i]]=i;
}
}
for (int i=GUI_ACTION_SAMPLE_LIST_MIN+1; i<GUI_ACTION_INS_LIST_MAX; i++) {
for (int i=GUI_ACTION_SAMPLE_LIST_MIN+1; i<GUI_ACTION_SAMPLE_LIST_MAX; i++) {
if (actionKeys[i]&FURK_MASK) {
actionMapSampleList[actionKeys[i]]=i;
}