Skip to content

Commit fb48933

Browse files
Added missing declaration to Status_ValueChangedIntArr(char const*, char const*, int, int)
1 parent a8f5dc8 commit fb48933

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ML_SynthTools",
3-
"version": "2.0.10",
3+
"version": "2.0.11",
44
"keywords": "ML_SynthTools, Synthesizer, Filter, Audio, ESP32, ESP32S2, ESP32S3, STM32, RP2040",
55
"description": "Synthesizer Tools; contains waveform generators etc.",
66
"repository":

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ML SynthTools
2-
version=2.0.10
2+
version=2.0.11
33
author=Marcel Licence <[email protected]>
44
maintainer=Marcel Licence <[email protected]>
55
sentence=Synthesizer Tools

src/ml_status.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ void Status_ValueChangedFloat(const char *group, const char *descr, float value)
5252
void Status_ValueChangedFloat(const char *descr, float value);
5353
void Status_ValueChangedFloatArr(const char *descr, float value, int index);
5454
void Status_ValueChangedIntArr(const char *descr, int value, int index);
55+
void Status_ValueChangedIntArr(const char *group, const char *descr, int value, int index);
5556
void Status_ValueChangedInt(const char *group, const char *descr, int value);
5657
void Status_ValueChangedInt(const char *descr, int value);
5758
void Status_ValueChangedStr(const char *descr, const char *value);

0 commit comments

Comments
 (0)