Skip to content

Commit

Permalink
add LFO speed macro
Browse files Browse the repository at this point in the history
  • Loading branch information
tildearrow committed Feb 5, 2022
1 parent 6000d70 commit 12d4cd6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/engine/platform/arcade.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,10 @@ void DivPlatformArcade::tick() {
immWrite(0x19,0x80|pmDepth);
}

if (chan[i].std.hadEx3) {
immWrite(0x18,chan[i].std.ex3);
}

if (chan[i].std.hadAlg) {
chan[i].state.alg=chan[i].std.alg;
if (isMuted[i]) {
Expand Down
1 change: 1 addition & 0 deletions src/gui/gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1622,6 +1622,7 @@ void FurnaceGUI::drawInsEdit() {

NORMAL_MACRO(ins->std.ex1Macro,ins->std.ex1MacroLen,ins->std.ex1MacroLoop,0,127,"ex1","AM Depth",128,ins->std.ex1MacroOpen,false,NULL,false,NULL,0,0,0,NULL,uiColors[GUI_COLOR_MACRO_OTHER],mmlString[4],0,127);
NORMAL_MACRO(ins->std.ex2Macro,ins->std.ex2MacroLen,ins->std.ex2MacroLoop,0,127,"ex2","PM Depth",128,ins->std.ex2MacroOpen,false,NULL,false,NULL,0,0,0,NULL,uiColors[GUI_COLOR_MACRO_OTHER],mmlString[5],0,127);
NORMAL_MACRO(ins->std.ex3Macro,ins->std.ex3MacroLen,ins->std.ex3MacroLoop,0,255,"ex3","LFO Speed",128,ins->std.ex3MacroOpen,false,NULL,false,NULL,0,0,0,NULL,uiColors[GUI_COLOR_MACRO_OTHER],mmlString[6],0,255);
MACRO_END;
ImGui::EndTabItem();
}
Expand Down

0 comments on commit 12d4cd6

Please sign in to comment.