summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Vulkan/ObjectCache.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2016-10-29 14:42:43 +0200
committerJosJuice <josjuice@gmail.com>2016-10-29 15:24:02 +0200
commit1081497cad9c70c5b66552e20bbc00657a05f0e5 (patch)
tree09a38f3f89bf28b082f58243a1f6ee8a4e1f111d /Source/Core/VideoBackends/Vulkan/ObjectCache.cpp
parentb0e2642883794e53364873eca3f54347fd6fb2b6 (diff)
DiscIO/SConfig: Rename GetUniqueID to GetGameID
We call this "game ID" everywhere else, and it's not actually completely unique.
Diffstat (limited to 'Source/Core/VideoBackends/Vulkan/ObjectCache.cpp')
-rw-r--r--Source/Core/VideoBackends/Vulkan/ObjectCache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Vulkan/ObjectCache.cpp b/Source/Core/VideoBackends/Vulkan/ObjectCache.cpp
index d1e874cac6..e5e65c1a73 100644
--- a/Source/Core/VideoBackends/Vulkan/ObjectCache.cpp
+++ b/Source/Core/VideoBackends/Vulkan/ObjectCache.cpp
@@ -291,7 +291,7 @@ VkPipeline ObjectCache::GetPipeline(const PipelineInfo& info)
std::string ObjectCache::GetDiskCacheFileName(const char* type)
{
return StringFromFormat("%svulkan-%s-%s.cache", File::GetUserPath(D_SHADERCACHE_IDX).c_str(),
- SConfig::GetInstance().m_strUniqueID.c_str(), type);
+ SConfig::GetInstance().m_strGameID.c_str(), type);
}
class PipelineCacheReadCallback : public LinearDiskCacheReader<u32, u8>