summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/EmuWindow.cpp
diff options
context:
space:
mode:
authordegasus <wickmarkus@web.de>2013-04-08 15:57:51 +0200
committerdegasus <wickmarkus@web.de>2013-04-08 15:57:51 +0200
commit702198f39b4eb71a068c20c9969bd86856fa85ae (patch)
treebdee823a26505a752dc9c512cfb9bcfee0cbe90f /Source/Core/VideoCommon/Src/EmuWindow.cpp
parentca8554e7d1d7c77b3c2a9ed8a7fb12de7096c67b (diff)
parent4c40e70b8af839f84d7d9b8306116cabf3965cdb (diff)
Merge branch 'master' into primitive_restart
Conflicts: Source/Core/VideoCommon/Src/VideoConfig.h Source/Plugins/Plugin_VideoDX9/Src/main.cpp Source/Plugins/Plugin_VideoOGL/Src/Render.cpp
Diffstat (limited to 'Source/Core/VideoCommon/Src/EmuWindow.cpp')
-rw-r--r--Source/Core/VideoCommon/Src/EmuWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Src/EmuWindow.cpp b/Source/Core/VideoCommon/Src/EmuWindow.cpp
index bf9da4190b..8952432789 100644
--- a/Source/Core/VideoCommon/Src/EmuWindow.cpp
+++ b/Source/Core/VideoCommon/Src/EmuWindow.cpp
@@ -247,7 +247,7 @@ void OSDMenu(WPARAM wParam)
OSDChoice = 1;
// Toggle native resolution
g_Config.iEFBScale = g_Config.iEFBScale + 1;
- if (g_Config.iEFBScale > 7) g_Config.iEFBScale = 0;
+ if (g_Config.iEFBScale > SCALE_4X) g_Config.iEFBScale = SCALE_AUTO;
break;
case '4':
OSDChoice = 2;