1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

ARAPluginDemo: Fix warning

This commit is contained in:
attila 2022-07-21 17:51:25 +02:00
parent 980092ba1a
commit 351e8e8916

View file

@ -676,10 +676,10 @@ public:
ScopedNoDenormals noDenormals;
auto* playHead = getPlayHead();
playHeadState.update (playHead);
auto* audioPlayHead = getPlayHead();
playHeadState.update (audioPlayHead);
if (! processBlockForARA (buffer, isRealtime(), playHead))
if (! processBlockForARA (buffer, isRealtime(), audioPlayHead))
processBlockBypassed (buffer, midiMessages);
}