early-access version 2920

main
pineappleEA 2022-08-26 07:21:35 +02:00
parent ff1775218e
commit 27a2d0cdb2
2 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access
=============
This is the source code for early-access 2919.
This is the source code for early-access 2920.
## Legal Notice

View File

@ -432,7 +432,9 @@ void PipelineCache::LoadDiskResources(u64 title_id, std::stop_token stop_loading
state.statistics.get(), false)};
std::scoped_lock lock{state.mutex};
graphics_cache.emplace(key, std::move(pipeline));
if (pipeline) {
graphics_cache.emplace(key, std::move(pipeline));
}
++state.built;
if (state.has_loaded) {
callback(VideoCore::LoadCallbackStage::Build, state.built, state.total);