mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
disable hacked buffer option for d3d
This commit is contained in:
parent
f452a6442f
commit
ae55d82e43
2 changed files with 6 additions and 4 deletions
|
@ -8,6 +8,7 @@
|
|||
|
||||
#include "ConfigManager.h"
|
||||
#include "VideoConfig.h"
|
||||
#include "Core.h"
|
||||
|
||||
#include <wx/wx.h>
|
||||
#include <wx/textctrl.h>
|
||||
|
@ -165,6 +166,9 @@ protected:
|
|||
// XFB
|
||||
virtual_xfb->Enable(vconfig.bUseXFB);
|
||||
real_xfb->Enable(vconfig.bUseXFB);
|
||||
|
||||
// OGL Hacked buffer
|
||||
hacked_buffer_upload->Enable(Core::GetState() == Core::CORE_UNINITIALIZED && vconfig.backend_info.APIType == API_OPENGL);
|
||||
|
||||
ev.Skip();
|
||||
}
|
||||
|
@ -194,6 +198,7 @@ protected:
|
|||
SettingRadioButton* efbcopy_ram;
|
||||
SettingCheckBox* cache_efb_copies;
|
||||
SettingCheckBox* emulate_efb_format_changes;
|
||||
SettingCheckBox* hacked_buffer_upload;
|
||||
|
||||
SettingRadioButton* virtual_xfb;
|
||||
SettingRadioButton* real_xfb;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue