diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2025-04-30 16:10:28 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-30 16:10:28 -0500 |
| commit | 8e64a02a4246c3611837c3bee44033db7562ae50 (patch) | |
| tree | 879ced7e22b15db1412905713b0b7f3f4038662e /Source/Core/VideoCommon/Assets/CustomAssetLoader.cpp | |
| parent | 43e4e8f18247973c2ddfe433a32a99305695e5c9 (diff) | |
| parent | e8b63fe09047146fa6624f600ded0987035ff98a (diff) | |
Merge pull request #13579 from jordan-woyak/work-queue-thread-cleanup
WorkQueueThread: Implement in terms of WaitableSPSCQueue. Add unit tests.
Diffstat (limited to 'Source/Core/VideoCommon/Assets/CustomAssetLoader.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/Assets/CustomAssetLoader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/Assets/CustomAssetLoader.cpp b/Source/Core/VideoCommon/Assets/CustomAssetLoader.cpp index 119d7444ea..e70faa8359 100644 --- a/Source/Core/VideoCommon/Assets/CustomAssetLoader.cpp +++ b/Source/Core/VideoCommon/Assets/CustomAssetLoader.cpp @@ -69,9 +69,9 @@ void CustomAssetLoader::Init() }); } -void CustomAssetLoader ::Shutdown() +void CustomAssetLoader::Shutdown() { - m_asset_load_thread.Shutdown(true); + m_asset_load_thread.StopAndCancel(); m_asset_monitor_thread_shutdown.Set(); m_asset_monitor_thread.join(); |
