mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-08 12:12:39 +00:00
OpenGL: Fixed initial framebuffer so it's not too small
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3381 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
085fa5f526
commit
63ae48d9f9
3 changed files with 17 additions and 13 deletions
|
@ -485,9 +485,11 @@ void ConfigDialog::GeneralSettingsChanged(wxCommandEvent& event)
|
|||
break;
|
||||
case ID_NATIVERESOLUTION:
|
||||
g_Config.bNativeResolution = m_NativeResolution->IsChecked();
|
||||
if (g_Config.bNativeResolution) g_Config.b2xResolution = false;
|
||||
break;
|
||||
case ID_2X_RESOLUTION:
|
||||
g_Config.b2xResolution = m_2xResolution->IsChecked();
|
||||
if (g_Config.b2xResolution) g_Config.bNativeResolution = false;
|
||||
break;
|
||||
case ID_VSYNC:
|
||||
g_Config.bVSync = m_VSync->IsChecked();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue