From 372e00632dbe7e02ef67fdf3daa7ebfb3d607edb Mon Sep 17 00:00:00 2001
From: NeoBrainX <NeoBrainX@gmail.com>
Date: Tue, 29 May 2012 13:11:28 +0200
Subject: [PATCH] Fix changing internal resolution via hotkeys (settings above
 1.5x weren't accessible anymore before).

---
 Source/Core/VideoCommon/Src/EmuWindow.cpp     | 2 +-
 Source/Plugins/Plugin_VideoOGL/Src/GLUtil.cpp | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Source/Core/VideoCommon/Src/EmuWindow.cpp b/Source/Core/VideoCommon/Src/EmuWindow.cpp
index 30dca24cb1..d91b1578bf 100644
--- a/Source/Core/VideoCommon/Src/EmuWindow.cpp
+++ b/Source/Core/VideoCommon/Src/EmuWindow.cpp
@@ -251,7 +251,7 @@ void OSDMenu(WPARAM wParam)
 		OSDChoice = 1;
 		// Toggle native resolution
 		g_Config.iEFBScale = g_Config.iEFBScale + 1;
-		if (g_Config.iEFBScale > 4) g_Config.iEFBScale = 0;
+		if (g_Config.iEFBScale > 7) g_Config.iEFBScale = 0;
 		break;
 	case '4':
 		OSDChoice = 2;
diff --git a/Source/Plugins/Plugin_VideoOGL/Src/GLUtil.cpp b/Source/Plugins/Plugin_VideoOGL/Src/GLUtil.cpp
index cbdb702885..25f606f50d 100644
--- a/Source/Plugins/Plugin_VideoOGL/Src/GLUtil.cpp
+++ b/Source/Plugins/Plugin_VideoOGL/Src/GLUtil.cpp
@@ -174,7 +174,7 @@ void XEventThread()
 							OSDChoice = 1;
 							// Toggle native resolution
 							g_Config.iEFBScale = g_Config.iEFBScale + 1;
-							if (g_Config.iEFBScale > 4) g_Config.iEFBScale = 0;
+							if (g_Config.iEFBScale > 7) g_Config.iEFBScale = 0;
 							break;
 						case XK_4:
 							OSDChoice = 2;