Skip to content

Commit

Permalink
upd flizzertracker
Browse files Browse the repository at this point in the history
  • Loading branch information
xMasterX committed Apr 23, 2024
1 parent 4341a56 commit 570cb8b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion non_catalog_apps/flizzer_tracker/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ App(
cdefines=["APP_FLIZZER_TRACKER"],
stack_size=2 * 1024,
order=90,
fap_version=(0, 8),
fap_version=(0, 9),
fap_description="An advanced Flipper Zero chiptune tracker with 4 channels",
fap_author="LTVA",
fap_weburl="https://github.com/LTVA1/flizzer_tracker",
Expand Down
4 changes: 3 additions & 1 deletion non_catalog_apps/flizzer_tracker/tracker_engine/do_effects.c
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,9 @@ void do_command(
}

case TE_EFFECT_TRIGGER_RELEASE: {
sound_engine_enable_gate(tracker_engine->sound_engine, se_channel, 0);
if(tick == (opcode & 0xff)) {
sound_engine_enable_gate(tracker_engine->sound_engine, se_channel, 0);
}

break;
}
Expand Down

0 comments on commit 570cb8b

Please sign in to comment.