mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-28 09:59:32 -06:00
Core: Notify state change callback about stopping state
This commit is contained in:
@ -242,6 +242,10 @@ void Stop() // - Hammertime!
|
||||
|
||||
s_is_stopping = true;
|
||||
|
||||
// Notify state changed callback
|
||||
if (s_on_state_changed_callback)
|
||||
s_on_state_changed_callback(State::Stopping);
|
||||
|
||||
// Dump left over jobs
|
||||
HostDispatchJobs();
|
||||
|
||||
|
Reference in New Issue
Block a user