mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Remove non-integer IRs
This commit is contained in:
@ -207,7 +207,7 @@ void HotkeyScheduler::Run()
|
||||
if (IsHotkey(HK_INCREASE_IR))
|
||||
++g_Config.iEFBScale;
|
||||
if (IsHotkey(HK_DECREASE_IR))
|
||||
g_Config.iEFBScale = std::max(g_Config.iEFBScale - 1, static_cast<int>(SCALE_AUTO));
|
||||
g_Config.iEFBScale = std::max(g_Config.iEFBScale - 1, EFB_SCALE_AUTO_INTEGRAL);
|
||||
if (IsHotkey(HK_TOGGLE_CROP))
|
||||
g_Config.bCrop = !g_Config.bCrop;
|
||||
if (IsHotkey(HK_TOGGLE_AR))
|
||||
|
Reference in New Issue
Block a user