mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 11:35:54 +00:00
Merge pull request #5731 from mimimi085181/terminate-background-input
Disable Background Input when Background Input is disabled
This commit is contained in:
commit
0f9ae6d361
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ constexpr ControlState INPUT_DETECT_THRESHOLD = 0.55;
|
|||
|
||||
bool ControlReference::InputGateOn()
|
||||
{
|
||||
return SConfig::GetInstance().m_BackgroundInput || Host_RendererHasFocus() || Host_UIHasFocus();
|
||||
return SConfig::GetInstance().m_BackgroundInput || Host_RendererHasFocus();
|
||||
}
|
||||
|
||||
//
|
||||
|
|
Loading…
Add table
Reference in a new issue