Core: Don't display messages in the titlebar / statusbar

We already put them on-screen, that should be good enough.
This commit is contained in:
Jasper St. Pierre 2014-08-19 10:07:59 -04:00
parent 271efb450c
commit 4a16211bae
1 changed files with 0 additions and 10 deletions

View File

@ -126,16 +126,6 @@ void DisplayMessage(const std::string& message, int time_in_ms)
}
g_video_backend->Video_AddMessage(message, time_in_ms);
if (_CoreParameter.bRenderToMain &&
SConfig::GetInstance().m_InterfaceStatusbar)
{
Host_UpdateStatusBar(message);
}
else
{
Host_UpdateTitle(message);
}
}
bool IsRunning()