AudioCommon: make SoundLoop() non-virtual and private

This commit is contained in:
Tillmann Karras
2021-08-07 22:15:45 +01:00
parent d14b9a73b2
commit b6d8c111bc
7 changed files with 7 additions and 10 deletions

View File

@ -56,13 +56,14 @@ public:
OpenALStream() : m_source(0) {}
~OpenALStream() override;
bool Init() override;
void SoundLoop() override;
void SetVolume(int volume) override;
bool SetRunning(bool running) override;
static bool isValid();
private:
void SoundLoop();
std::thread m_thread;
Common::Flag m_run_thread;