From 3c065417188ed6e3278e9eac2945cbe6a1731b6d Mon Sep 17 00:00:00 2001 From: Martino Fontana Date: Tue, 5 May 2026 13:50:05 +0200 Subject: [PATCH] Fixup #14565 (compilation with `-DENABLE_CUBEB=OFF`) --- Source/Core/Core/IOS/USB/Emulated/Microphone.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/Core/Core/IOS/USB/Emulated/Microphone.cpp b/Source/Core/Core/IOS/USB/Emulated/Microphone.cpp index 806fddb14c..b3cb63a210 100644 --- a/Source/Core/Core/IOS/USB/Emulated/Microphone.cpp +++ b/Source/Core/Core/IOS/USB/Emulated/Microphone.cpp @@ -36,8 +36,7 @@ Microphone::Microphone(const MicrophoneState& sampler, std::string worker_name) { } #else -Microphone::Microphone(MicrophoneState sampler, std::string worker_name) - : m_sampler(std::move(sampler)) +Microphone::Microphone(const MicrophoneState& sampler, std::string worker_name) : m_sampler(sampler) { } #endif