mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-03 16:16:05 +00:00
OpenGL: Added 2x mode for pixel exact 2D together with high-res 3D
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3371 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
299c4f8f1b
commit
d3ddfef93c
6 changed files with 48 additions and 21 deletions
|
@ -108,7 +108,12 @@ void OSDMenu(WPARAM wParam)
|
|||
case '3':
|
||||
OSDChoice = 1;
|
||||
// Toggle native resolution
|
||||
g_Config.bNativeResolution = !g_Config.bNativeResolution;
|
||||
if (!(g_Config.bNativeResolution || g_Config.b2xResolution))
|
||||
g_Config.bNativeResolution = true;
|
||||
else if (g_Config.bNativeResolution)
|
||||
{ g_Config.bNativeResolution = false; g_Config.b2xResolution = true; }
|
||||
else
|
||||
g_Config.b2xResolution = false;
|
||||
break;
|
||||
case '4':
|
||||
OSDChoice = 2;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue