2-midi-looping #3

Merged
boomjacky merged 17 commits from 2-midi-looping into master 2026-05-10 12:24:23 -04:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 595a35ec32 - Show all commits

View File

@@ -27,7 +27,7 @@ struct channel_t {
};
/* Globals declared in looper.c */
extern _Atomic struct channel_t *channels;
extern struct channel_t *_Atomic channels;
extern atomic_int channel_capacity;
extern atomic_int channel_count;
extern int next_channel_id;

View File

@@ -13,7 +13,7 @@
#include <string.h>
/* Global state (shared across files) */
_Atomic struct channel_t *channels = NULL;
struct channel_t *_Atomic channels = NULL;
atomic_int channel_capacity = 0;
atomic_int channel_count = 0;
int next_channel_id = 1;