diff options
| author | Anthony <Helios747@users.noreply.github.com> | 2017-03-09 18:13:02 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-09 18:13:02 +0000 |
| commit | cf848b7c42071104c2ade3b1b8230e2233a40f11 (patch) | |
| tree | 3c8f54ce0844fffdaf52a46b7e1c6e31d81bc73a /Source/Core/VideoBackends/Vulkan/ObjectCache.cpp | |
| parent | dc42f7fb289092d44bdac07f3b5e8ed9c6402260 (diff) | |
| parent | ab616145c2d90e5397c89b006775b533c8e845b7 (diff) | |
Merge pull request #5045 from JosJuice/unify-setting-game-metadata
Unify the way of setting game ID, title ID, revision
Diffstat (limited to 'Source/Core/VideoBackends/Vulkan/ObjectCache.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Vulkan/ObjectCache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Vulkan/ObjectCache.cpp b/Source/Core/VideoBackends/Vulkan/ObjectCache.cpp index 94d9178aa9..9c903b0065 100644 --- a/Source/Core/VideoBackends/Vulkan/ObjectCache.cpp +++ b/Source/Core/VideoBackends/Vulkan/ObjectCache.cpp @@ -327,7 +327,7 @@ std::pair<VkPipeline, bool> ObjectCache::GetPipelineWithCacheResult(const Pipeli std::string ObjectCache::GetDiskCacheFileName(const char* type) { return StringFromFormat("%svulkan-%s-%s.cache", File::GetUserPath(D_SHADERCACHE_IDX).c_str(), - SConfig::GetInstance().m_strGameID.c_str(), type); + SConfig::GetInstance().GetGameID().c_str(), type); } class PipelineCacheReadCallback : public LinearDiskCacheReader<u32, u8> |
