fix: small const for debt

This commit is contained in:
2025-11-11 10:24:07 +01:00
parent 958a5cf333
commit 8deaed7d9b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -281,7 +281,7 @@ void state_apply_event(SharedContext *context, const StateConfig *state_config,
}
}
void state_apply(SharedContext *context, const StateConfig *state_config,
void state_apply(const SharedContext *context, const StateConfig *state_config,
const MidiDevice *midi) {
if (!midi->error) {
update_values(context, state_config, midi);
+1 -1
View File
@@ -21,7 +21,7 @@ void state_reset(SharedContext *context);
void state_randomize(SharedContext *context, const StateConfig *state_config);
void state_apply(SharedContext *context, const StateConfig *state_config,
void state_apply(const SharedContext *context, const StateConfig *state_config,
const MidiDevice *midi);
void state_save(const SharedContext *context, const StateConfig *state_config,