mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-26 06:25:16 +00:00
increase effect column limit to 8
This commit is contained in:
parent
e24738fcda
commit
b091404d63
1 changed files with 1 additions and 1 deletions
|
@ -1490,7 +1490,7 @@ void FurnaceGUI::drawPattern() {
|
|||
snprintf(chanID,256,">##_RCH%d",i);
|
||||
if (ImGui::SmallButton(chanID)) {
|
||||
e->song.pat[i].effectRows++;
|
||||
if (e->song.pat[i].effectRows>4) e->song.pat[i].effectRows=4;
|
||||
if (e->song.pat[i].effectRows>8) e->song.pat[i].effectRows=8;
|
||||
}
|
||||
ImGui::EndDisabled();
|
||||
ImGui::Spacing();
|
||||
|
|
Loading…
Reference in a new issue