summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/RenderBase.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2017-11-03 16:04:46 +0100
committerJosJuice <josjuice@gmail.com>2017-11-03 16:04:46 +0100
commita310cbec8e7dfa18b22d53dc45a47757a97c827d (patch)
tree4ab0aed494e7eab6ef6c4287d06404fa9e720cd5 /Source/Core/VideoCommon/RenderBase.cpp
parentc8710d0861fb991d860955a221c02507b55cdd2d (diff)
Fix incorrect handling of auto IR
Some lines of code in Dolphin just plainly grabbed the value of g_ActiveConfig.iEFBScale, which resulted in Auto being treated as 0x rather than the actual automatically selected scale.
Diffstat (limited to 'Source/Core/VideoCommon/RenderBase.cpp')
-rw-r--r--Source/Core/VideoCommon/RenderBase.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/RenderBase.cpp b/Source/Core/VideoCommon/RenderBase.cpp
index 2741e14d09..63e3f5f5ed 100644
--- a/Source/Core/VideoCommon/RenderBase.cpp
+++ b/Source/Core/VideoCommon/RenderBase.cpp
@@ -131,6 +131,11 @@ void Renderer::RenderToXFB(u32 xfbAddr, const EFBRectangle& sourceRc, u32 fbStri
}
}
+unsigned int Renderer::GetEFBScale() const
+{
+ return m_efb_scale;
+}
+
int Renderer::EFBToScaledX(int x) const
{
return x * static_cast<int>(m_efb_scale);