From faa850a48c2522ec6c05349ec5c4cfe2feb1d378 Mon Sep 17 00:00:00 2001 From: Yuki <68385758+YukiChiyoda@users.noreply.github.com> Date: Sun, 11 Aug 2024 21:46:46 +0800 Subject: [PATCH] Oboe: Remove an erroneous semicolon --- modules/juce_audio_devices/native/juce_Oboe_android.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_audio_devices/native/juce_Oboe_android.cpp b/modules/juce_audio_devices/native/juce_Oboe_android.cpp index 2e49a99681..8bdf71c598 100644 --- a/modules/juce_audio_devices/native/juce_Oboe_android.cpp +++ b/modules/juce_audio_devices/native/juce_Oboe_android.cpp @@ -495,7 +495,7 @@ private: startResult = stream->waitForStateChange (expectedState, &nextState, timeoutNanos); - JUCE_OBOE_LOG ("Starting Oboe stream with result: " + getOboeString (startResult); + JUCE_OBOE_LOG ("Starting Oboe stream with result: " + getOboeString (startResult) + "\nUses AAudio = " + String ((int) stream->usesAAudio()) + "\nDirection = " + getOboeString (stream->getDirection()) + "\nSharingMode = " + getOboeString (stream->getSharingMode())