mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Add hotkeys to increase/decrease the IR
This commit is contained in:
@ -1353,6 +1353,18 @@ void CFrame::ParseHotkeys(wxKeyEvent &event)
|
||||
if (++g_Config.iEFBScale > SCALE_4X)
|
||||
g_Config.iEFBScale = SCALE_AUTO;
|
||||
}
|
||||
else if (IsHotkey(event, HK_INCREASE_IR))
|
||||
{
|
||||
OSDChoice = 1;
|
||||
if (++g_Config.iEFBScale > SCALE_4X)
|
||||
g_Config.iEFBScale = SCALE_4X;
|
||||
}
|
||||
else if (IsHotkey(event, HK_DECREASE_IR))
|
||||
{
|
||||
OSDChoice = 1;
|
||||
if (--g_Config.iEFBScale < SCALE_1X)
|
||||
g_Config.iEFBScale = SCALE_1X;
|
||||
}
|
||||
else if (IsHotkey(event, HK_TOGGLE_AR))
|
||||
{
|
||||
OSDChoice = 2;
|
||||
|
Reference in New Issue
Block a user