summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/RenderBase.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/VideoCommon/Src/RenderBase.cpp')
-rw-r--r--Source/Core/VideoCommon/Src/RenderBase.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/Source/Core/VideoCommon/Src/RenderBase.cpp b/Source/Core/VideoCommon/Src/RenderBase.cpp
index 9029f5eff9..237605ccf3 100644
--- a/Source/Core/VideoCommon/Src/RenderBase.cpp
+++ b/Source/Core/VideoCommon/Src/RenderBase.cpp
@@ -178,13 +178,10 @@ bool Renderer::CalculateTargetSize(int multiplier)
newEFBWidth *= multiplier;
newEFBHeight *= multiplier;
- s_Fulltarget_width = newEFBWidth;
- s_Fulltarget_height = newEFBHeight;
-
if (newEFBWidth != s_target_width || newEFBHeight != s_target_height)
{
- s_target_width = newEFBWidth;
- s_target_height = newEFBHeight;
+ s_Fulltarget_width = s_target_width = newEFBWidth;
+ s_Fulltarget_height = s_target_height = newEFBHeight;
return true;
}
return false;