Core/Host: Allow frontends to block inputs

This commit is contained in:
spycrab
2019-03-18 17:30:33 +01:00
parent 0a3279ae6b
commit 61350b3d98
6 changed files with 23 additions and 2 deletions

View File

@ -151,6 +151,12 @@ bool Host_UINeedsControllerState()
{
return Settings::Instance().IsControllerStateNeeded();
}
bool Host_UIBlocksControllerState()
{
return ImGui::GetCurrentContext() && ImGui::GetIO().WantCaptureKeyboard;
}
void Host_RefreshDSPDebuggerWindow()
{
}