diff options
| author | Stenzek <stenzek@gmail.com> | 2019-10-10 00:09:16 +1000 |
|---|---|---|
| committer | Stenzek <stenzek@gmail.com> | 2019-10-10 00:09:16 +1000 |
| commit | 7c286064b85edeb9a53916fbd2add76ef60bc5a5 (patch) | |
| tree | 44a309ccce71189e4d163b80e103e1c110491898 /Source/Core/AudioCommon/AudioCommon.cpp | |
| parent | 1c5441aa40eb81e51682477921c02ad21cf57aa9 (diff) | |
AudioCommon: Don't forget to call Init() on fallback
Diffstat (limited to 'Source/Core/AudioCommon/AudioCommon.cpp')
| -rw-r--r-- | Source/Core/AudioCommon/AudioCommon.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/AudioCommon/AudioCommon.cpp b/Source/Core/AudioCommon/AudioCommon.cpp index dd9986077e..a8f09c2688 100644 --- a/Source/Core/AudioCommon/AudioCommon.cpp +++ b/Source/Core/AudioCommon/AudioCommon.cpp @@ -64,6 +64,7 @@ void InitSoundStream() WARN_LOG(AUDIO, "Could not initialize backend %s, using %s instead.", backend.c_str(), BACKEND_NULLSOUND); g_sound_stream = std::make_unique<NullSound>(); + g_sound_stream->Init(); } UpdateSoundStream(); |
