refactor: use struct pointers everywhere and bump max sizes

This commit is contained in:
2025-11-08 19:29:04 +01:00
parent 3b7a550b6a
commit b4b79cea12
8 changed files with 33 additions and 33 deletions
+5 -5
View File
@@ -18,7 +18,7 @@
/* STRINGS */
#ifndef STR_LEN
#define STR_LEN 1024
#define STR_LEN 2048
#endif
/* TYPES */
@@ -32,7 +32,7 @@
#endif
#ifndef MAX_SUB_FILE
#define MAX_SUB_FILE 32
#define MAX_SUB_FILE 63
#endif
/* MIDI */
@@ -48,7 +48,7 @@
/* ARRAY */
#ifndef ARRAY_SIZE
#define ARRAY_SIZE 512
#define ARRAY_SIZE 1024
#endif
#ifndef ARRAY_NOT_FOUND
@@ -63,8 +63,8 @@
#endif
#ifndef MIN_BEAT_LENGTH
// 240.0 bpm
#define MIN_BEAT_LENGTH 250
// 480.0 bpm
#define MIN_BEAT_LENGTH 125
#endif
#ifndef BEATS_UNTIL_CHAIN_RESET