Skip to content

Commit 2bc7a06

Browse files
committed
fix 1st entered note being slient when keyjamming, add memory to 01xx 02xx 0Axy effects
1 parent ebb7b47 commit 2bc7a06

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

doc/Default.kt

0 Bytes
Binary file not shown.

klystron

src/event.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2809,7 +2809,7 @@ static void play_the_jams(int sym, int chn, int state)
28092809
{
28102810
if (chn == -1 && !(mused.flags & MULTICHANNEL_PREVIEW))
28112811
chn = 0;
2812-
2812+
28132813
int c = mus_trigger_instrument(&mused.mus, chn, &mused.song.instrument[mused.current_instrument], note << 8, CYD_PAN_CENTER);
28142814

28152815
for(int s = 0; s < CYD_SUB_OSCS; s++)

src/import/famitracker.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -5644,7 +5644,7 @@ bool import_ft_new(FILE* f, int type, ftm_block* blocks, bool is_dn_ft_sig)
56445644

56455645
debug("finished processing blocks");
56465646

5647-
mused.song.flags |= MUS_USE_OLD_SAMPLE_LOOP_BEHAVIOUR;
5647+
mused.song.flags |= MUS_USE_OLD_SAMPLE_LOOP_BEHAVIOUR | MUS_USE_OLD_EFFECTS_BEHAVIOUR;
56485648

56495649
return success;
56505650
}

0 commit comments

Comments
 (0)