diff options
author | Lioncash <mathew1800@gmail.com> | 2022-09-21 09:25:00 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2022-09-21 09:26:42 -0400 |
commit | b59b967280d19348154ab52e2bec085d78605f79 (patch) | |
tree | b826e3b269d322266b033e96901575e6ce5d2699 /src/audio_core/audio_manager.cpp | |
parent | 8d4458ef24e473e57b9931d7a9d1442b51fb0b1a (diff) |
audio_manager: Remove dependence on system state
This isn't used by the class, so this can be removed for the time being.
Diffstat (limited to 'src/audio_core/audio_manager.cpp')
-rw-r--r-- | src/audio_core/audio_manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/audio_manager.cpp b/src/audio_core/audio_manager.cpp index 2f1bba9c3c..94f2f7e35f 100644 --- a/src/audio_core/audio_manager.cpp +++ b/src/audio_core/audio_manager.cpp @@ -8,7 +8,7 @@ namespace AudioCore { -AudioManager::AudioManager(Core::System& system_) : system{system_} { +AudioManager::AudioManager() { thread = std::jthread([this]() { ThreadFunc(); }); } |