feat: load/save state from number hotkeys

This commit is contained in:
2025-11-14 11:02:21 +01:00
parent f04fe1f5c1
commit 4ddb5241b4
11 changed files with 265 additions and 199 deletions
+4
View File
@@ -21,6 +21,10 @@ void midi_open(MidiDevice *device, const char *name) {
void midi_write(const MidiDevice *device, unsigned char code,
unsigned char value) {
if (device->error) {
return;
}
unsigned char buffer[3];
buffer[0] = 0xB0;