mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-04-12 11:21:30 -06:00
Metal: 0-init pointers in MetalPipelineCache
Otherwise `cemu_assert_debug(s_cache == nullptr);` fails in MetalPipelineCache.cpp: 294
This commit is contained in:
parent
9870810c65
commit
9ad8b44b52
@ -31,9 +31,9 @@ private:
|
||||
std::map<uint64, PipelineObject*> m_pipelineCache;
|
||||
FSpinlock m_pipelineCacheLock;
|
||||
|
||||
std::thread* m_pipelineCacheStoreThread;
|
||||
std::thread* m_pipelineCacheStoreThread = nullptr;
|
||||
|
||||
class FileCache* s_cache;
|
||||
class FileCache* s_cache = nullptr;
|
||||
|
||||
std::atomic_uint32_t m_numCompilationThreads{ 0 };
|
||||
ConcurrentQueue<std::vector<uint8>> m_compilationQueue;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user