Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/video_core/renderer_vulkan/vk_pipeline_serialization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,9 @@ void PipelineCache::WarmUp() {
if (std::memcmp(profile_data.data(), &profile, sizeof(profile)) != 0) {
LOG_WARNING(Render,
"Pipeline cache isn't compatible with current system. Ignoring the cache");
// Keep DB lifecycle consistent before early return: in archived mode, Save() later in the
// session may still be called and expects writable archive state.
Storage::DataBase::Instance().FinishPreload();
return;
}

Expand Down