1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Minor compiler warning fix.

This commit is contained in:
jules 2014-04-28 20:09:06 +01:00
parent 80fef3200c
commit 4e6e2a396e

View file

@ -398,7 +398,7 @@ public:
if (index < 0)
return kResultFalse;
owner->sendParamChangeMessageToListeners (index, valueNormalized);
owner->sendParamChangeMessageToListeners (index, (float) valueNormalized);
return owner->editController->setParamNormalized (paramID, valueNormalized);
}