From b3826f86d2382585f714e25b3e568eacbe1a3863 Mon Sep 17 00:00:00 2001 From: "Renato S. Pellegrini" Date: Thu, 11 Jun 2020 13:47:06 +0200 Subject: [PATCH] fixed ifdef around JUCE_SYNC_VIDEO_VOLUME_WITH_OS_MEDIA_VOLUME --- modules/juce_video/playback/juce_VideoComponent.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_video/playback/juce_VideoComponent.h b/modules/juce_video/playback/juce_VideoComponent.h index 99f0a1473f..22f97934f7 100644 --- a/modules/juce_video/playback/juce_VideoComponent.h +++ b/modules/juce_video/playback/juce_VideoComponent.h @@ -154,7 +154,7 @@ public: */ float getAudioVolume() const; - #if JUCE_SYNC_VIDEO_VOLUME_WITH_OS_MEDIA_VOLUME + #ifdef JUCE_SYNC_VIDEO_VOLUME_WITH_OS_MEDIA_VOLUME /** Set this callback to be notified whenever OS global media volume changes. Currently used on Android only. */