Skip to content

Commit

Permalink
Fix "Fast EFB Access" dialog behavior when toggling "Skip EFB Access"
Browse files Browse the repository at this point in the history
  • Loading branch information
HTCPCPS committed Sep 28, 2020
1 parent 233e73a commit bdcfc4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/VideoConfigDiag.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1923,7 +1923,7 @@ void VideoConfigDiag::OnUpdateUI(wxUpdateUIEvent& ev)
borderless_fullscreen->Show((vconfig.backend_info.APIType & API_D3D9) == 0);
#endif
// EFB Access Cache
Fast_efb_cache->Show(vconfig.bEFBAccessEnable);
Fast_efb_cache->Enable(vconfig.bEFBAccessEnable);
// XFB
virtual_xfb->Enable(vconfig.bUseXFB);
real_xfb->Enable(vconfig.bUseXFB);
Expand Down

0 comments on commit bdcfc4c

Please sign in to comment.