Qt: Implement "Auto-Adjust Window Size"

This commit is contained in:
spycrab
2018-03-24 16:40:47 +01:00
parent a838d13fd1
commit 806990968d
2 changed files with 10 additions and 0 deletions

View File

@ -115,9 +115,12 @@ void Host_UpdateProgressDialog(const char* caption, int position, int total)
void Host_UpdateMainFrame()
{
}
void Host_RequestRenderWindowSize(int w, int h)
{
emit Host::GetInstance()->RequestRenderSize(w, h);
}
bool Host_UINeedsControllerState()
{
return Settings::Instance().IsControllerStateNeeded();