From 922df88cdd645fe048f495e682f398d75aff192f Mon Sep 17 00:00:00 2001 From: Flyinghead Date: Sat, 22 Oct 2022 13:05:11 +0200 Subject: [PATCH] msvc build fix --- core/oslib/audiobackend_directsound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/oslib/audiobackend_directsound.cpp b/core/oslib/audiobackend_directsound.cpp index b4c220ca8..bd2773723 100644 --- a/core/oslib/audiobackend_directsound.cpp +++ b/core/oslib/audiobackend_directsound.cpp @@ -140,7 +140,7 @@ public: ringBuffer.setCapacity(config::AudioBufferSize * 4); // Start the thread - audioThread = std::thread(&audioThreadMain, this); + audioThread = std::thread(&DirectSoundBackend::audioThreadMain, this); // Play the buffer ! if (FAILED(buffer->Play(0, 0, DSBPLAY_LOOPING)))