HostInterface: Move 'System shut down' message to SDL

Only frontend where it makes sense anyway.
This commit is contained in:
Connor McLaughlin 2020-07-23 02:45:18 +10:00
parent 961afdf765
commit 104b80f111
2 changed files with 2 additions and 4 deletions

View File

@ -306,10 +306,7 @@ bool HostInterface::SaveState(const char* filename)
void HostInterface::OnSystemCreated() {}
void HostInterface::OnSystemDestroyed()
{
ReportFormattedMessage("System shut down.");
}
void HostInterface::OnSystemDestroyed() {}
void HostInterface::OnSystemPerformanceCountersUpdated() {}

View File

@ -314,6 +314,7 @@ void SDLHostInterface::OnSystemPaused(bool paused)
void SDLHostInterface::OnSystemDestroyed()
{
CommonHostInterface::OnSystemDestroyed();
ReportFormattedMessage("System shut down.");
}
void SDLHostInterface::OnRunningGameChanged()