msvc build fix

This commit is contained in:
Flyinghead 2022-10-22 13:05:11 +02:00
parent f25aeee756
commit 922df88cdd
1 changed files with 1 additions and 1 deletions

View File

@ -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)))