pattern data refactor, part 7

This commit is contained in:
tildearrow 2025-10-16 05:11:09 -05:00
parent 6c804c3674
commit 2b745cac62
6 changed files with 212 additions and 338 deletions

View file

@ -38,6 +38,10 @@
#define DIV_PAT_FX(_x) (3+((_x)<<1))
#define DIV_PAT_FXVAL(_x) (4+((_x)<<1))
// column type checks
#define DIV_PAT_IS_EFFECT(_x) ((_x)>DIV_PAT_VOL && (!((_x)&1)))
#define DIV_PAT_IS_EFFECT_VAL(_x) ((_x)>DIV_PAT_VOL && ((_x)&1))
#define DIV_NOTE_NULL_PAT 252
#define DIV_NOTE_OFF 253
#define DIV_NOTE_REL 254