mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 15:48:51 +00:00
Remove non-integer IRs
This commit is contained in:
parent
a25f7b9b4c
commit
f090a94319
45 changed files with 75 additions and 266 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue