zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit ed0d3d01e15f02b89d8f2c99ab6e49fea929ddaf
parent 8d1570a89fc1d2e7d8fe5ea15fba0cd4cc4ea1a6
Author: fundamental <mark.d.mccurry@gmail.com>
Date:   Wed, 17 Dec 2014 12:09:09 -0500

rtosc: Fixing Some Dead Ports

:c -> :i

Diffstat:
Msrc/Misc/Util.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Misc/Util.h b/src/Misc/Util.h @@ -149,7 +149,7 @@ float cinterpolate(const float *data, size_t len, float pos); const char *message_snip(const char *m); #define rParamZyn(name, ...) \ - {STRINGIFY(name) "::i", rProp(parameter) rMap(min, 0) rMap(max, 127) DOC(__VA_ARGS__), NULL, rParamCb(name)} + {STRINGIFY(name) "::i", rProp(parameter) rMap(min, 0) rMap(max, 127) DOC(__VA_ARGS__), NULL, rParamICb(name)} ///floating point parameter - with lookup code #define PARAMF(type, var, name, scale, _min, _max, desc) \