Qt/Settings: Implement ControllerStateNeeded

This commit is contained in:
spycrab
2018-02-06 23:12:17 +01:00
parent 51d3de6787
commit 87d7c994e7
3 changed files with 15 additions and 1 deletions

View File

@ -10,6 +10,7 @@
#include "Common/Common.h"
#include "Core/ConfigManager.h"
#include "Core/Host.h"
#include "DolphinQt2/Settings.h"
#include "VideoCommon/RenderBase.h"
Host::Host() = default;
@ -108,7 +109,7 @@ void Host_RequestRenderWindowSize(int w, int h)
}
bool Host_UINeedsControllerState()
{
return false;
return Settings::Instance().IsControllerStateNeeded();
}
void Host_NotifyMapLoaded()
{