mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-06 19:01:36 +03:00
Add 'immediate xfb' which reduces xfb latency at the cost of graphical errors
This commit is contained in:
parent
a71bc9ebbf
commit
7f0834c919
20 changed files with 55 additions and 6 deletions
|
@ -1491,6 +1491,13 @@ void CFrame::ParseHotkeys()
|
|||
Config::SetCurrent(Config::GFX_HACK_SKIP_XFB_COPY_TO_RAM,
|
||||
!Config::Get(Config::GFX_HACK_SKIP_XFB_COPY_TO_RAM));
|
||||
}
|
||||
if (IsHotkey(HK_TOGGLE_IMMEDIATE_XFB))
|
||||
{
|
||||
OSDChoice = 6;
|
||||
// Toggle immediate present of xfb
|
||||
Config::SetCurrent(Config::GFX_HACK_IMMEDIATE_XFB,
|
||||
!Config::Get(Config::GFX_HACK_IMMEDIATE_XFB));
|
||||
}
|
||||
if (IsHotkey(HK_TOGGLE_FOG))
|
||||
{
|
||||
OSDChoice = 4;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue