diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2025-03-15 00:21:05 -0500 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2025-04-30 14:31:51 -0500 |
| commit | a149b9d62d795ef758f7ea09ea726c6a8bb0e089 (patch) | |
| tree | 3286660388cfacfde4fcdbde7a709b6e2a4bec5e /Source/Core/VideoCommon/Assets | |
| parent | 852bd6df1af3c35c30df62253f59ced59a85c1f7 (diff) | |
WorkQueueThread: Cleanups. Implement in terms of WaitableSPSCQueue. Add single producer WorkQueueThreadSP.
Diffstat (limited to 'Source/Core/VideoCommon/Assets')
| -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(); |
