summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/OGL/SamplerCache.cpp
diff options
context:
space:
mode:
authorcomex <comexk@gmail.com>2014-10-14 01:14:26 -0400
committercomex <comexk@gmail.com>2014-10-14 01:14:26 -0400
commit8f61c6f239cf31e550daf0286b6945b8e7fc59e9 (patch)
tree79d9677d25d79c2b7ded29bce680184a380e600b /Source/Core/VideoBackends/OGL/SamplerCache.cpp
parent6650f8922d254496131e8d996544af800ed479fc (diff)
parentb93953250a3245a504742622c5cb27d4d33ec325 (diff)
Merge pull request #1243 from comex/warning-fixes
Misc / warning fixes
Diffstat (limited to 'Source/Core/VideoBackends/OGL/SamplerCache.cpp')
-rw-r--r--Source/Core/VideoBackends/OGL/SamplerCache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/OGL/SamplerCache.cpp b/Source/Core/VideoBackends/OGL/SamplerCache.cpp
index 2b422e1f55..a20b42d29f 100644
--- a/Source/Core/VideoBackends/OGL/SamplerCache.cpp
+++ b/Source/Core/VideoBackends/OGL/SamplerCache.cpp
@@ -50,7 +50,7 @@ void SamplerCache::SetSamplerState(int stage, const TexMode0& tm0, const TexMode
}
}
-auto SamplerCache::GetEntry(const Params& params) -> Value&
+SamplerCache::Value& SamplerCache::GetEntry(const Params& params)
{
auto& val = m_cache[params];
if (!val.sampler_id)