fix DIV_PAT_IS_EFFECT

This commit is contained in:
tildearrow 2025-11-17 23:53:20 -05:00
parent 205df7adb3
commit cb72e3e46f

View file

@ -39,8 +39,8 @@
#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_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