mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-26 07:35:41 +00:00
HostInterface: Move 'System shut down' message to SDL
Only frontend where it makes sense anyway.
This commit is contained in:
parent
961afdf765
commit
104b80f111
|
@ -306,10 +306,7 @@ bool HostInterface::SaveState(const char* filename)
|
||||||
|
|
||||||
void HostInterface::OnSystemCreated() {}
|
void HostInterface::OnSystemCreated() {}
|
||||||
|
|
||||||
void HostInterface::OnSystemDestroyed()
|
void HostInterface::OnSystemDestroyed() {}
|
||||||
{
|
|
||||||
ReportFormattedMessage("System shut down.");
|
|
||||||
}
|
|
||||||
|
|
||||||
void HostInterface::OnSystemPerformanceCountersUpdated() {}
|
void HostInterface::OnSystemPerformanceCountersUpdated() {}
|
||||||
|
|
||||||
|
|
|
@ -314,6 +314,7 @@ void SDLHostInterface::OnSystemPaused(bool paused)
|
||||||
void SDLHostInterface::OnSystemDestroyed()
|
void SDLHostInterface::OnSystemDestroyed()
|
||||||
{
|
{
|
||||||
CommonHostInterface::OnSystemDestroyed();
|
CommonHostInterface::OnSystemDestroyed();
|
||||||
|
ReportFormattedMessage("System shut down.");
|
||||||
}
|
}
|
||||||
|
|
||||||
void SDLHostInterface::OnRunningGameChanged()
|
void SDLHostInterface::OnRunningGameChanged()
|
||||||
|
|
Loading…
Reference in a new issue