mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 16:19:28 +01:00
Forgot committing the changes to VideoConfigDiag.h in r6625...
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6626 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
60ed57b32a
commit
83868566ea
@ -60,13 +60,30 @@ protected:
|
|||||||
{
|
{
|
||||||
efbcopy_texture->Disable();
|
efbcopy_texture->Disable();
|
||||||
efbcopy_ram->Disable();
|
efbcopy_ram->Disable();
|
||||||
|
cache_efb_copies->Disable();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
efbcopy_texture->Enable();
|
efbcopy_texture->Enable();
|
||||||
if (vconfig.backend_info.bSupportsEFBToRAM)
|
if (vconfig.backend_info.bSupportsEFBToRAM)
|
||||||
|
{
|
||||||
efbcopy_ram->Enable();
|
efbcopy_ram->Enable();
|
||||||
|
if (!vconfig.bCopyEFBToTexture)
|
||||||
|
cache_efb_copies->Enable();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
ev.Skip();
|
||||||
|
}
|
||||||
|
|
||||||
|
void Event_EfbCopyToTexture(wxCommandEvent &ev)
|
||||||
|
{
|
||||||
|
cache_efb_copies->Disable();
|
||||||
|
ev.Skip();
|
||||||
|
}
|
||||||
|
|
||||||
|
void Event_EfbCopyToRam(wxCommandEvent &ev)
|
||||||
|
{
|
||||||
|
cache_efb_copies->Enable();
|
||||||
ev.Skip();
|
ev.Skip();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -124,6 +141,7 @@ protected:
|
|||||||
|
|
||||||
SettingRadioButton* efbcopy_texture;
|
SettingRadioButton* efbcopy_texture;
|
||||||
SettingRadioButton* efbcopy_ram;
|
SettingRadioButton* efbcopy_ram;
|
||||||
|
SettingCheckBox* cache_efb_copies;
|
||||||
|
|
||||||
SettingRadioButton* virtual_xfb;
|
SettingRadioButton* virtual_xfb;
|
||||||
SettingRadioButton* real_xfb;
|
SettingRadioButton* real_xfb;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user