mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-23 06:10:03 -06:00
fix bugs with SPI shutdown
This commit is contained in:
@ -346,6 +346,7 @@ void Reset()
|
||||
void Stop()
|
||||
{
|
||||
printf("Stopping: shutdown\n");
|
||||
Running = false;
|
||||
Platform::StopEmu();
|
||||
GPU::Stop();
|
||||
SPU::Stop();
|
||||
|
@ -44,7 +44,7 @@
|
||||
#endif
|
||||
|
||||
|
||||
void Stop();
|
||||
void Stop(bool internal);
|
||||
|
||||
|
||||
namespace Platform
|
||||
@ -75,7 +75,7 @@ u8 PacketBuffer[2048];
|
||||
|
||||
void StopEmu()
|
||||
{
|
||||
Stop();
|
||||
Stop(true);
|
||||
}
|
||||
|
||||
|
||||
|
@ -320,9 +320,10 @@ void Run()
|
||||
uiMenuItemSetChecked(MenuItem_Pause, 0);
|
||||
}
|
||||
|
||||
void Stop()
|
||||
void Stop(bool internal)
|
||||
{
|
||||
EmuRunning = 2;
|
||||
if (!internal) // if shutting down from the UI thread, wait till the emu thread has stopped
|
||||
while (EmuStatus != 2);
|
||||
RunningSomething = false;
|
||||
|
||||
@ -449,7 +450,7 @@ void OnStop(uiMenuItem* item, uiWindow* window, void* blarg)
|
||||
{
|
||||
if (!RunningSomething) return;
|
||||
|
||||
Stop();
|
||||
Stop(false);
|
||||
}
|
||||
|
||||
void OnOpenEmuSettings(uiMenuItem* item, uiWindow* window, void* blarg)
|
||||
|
Reference in New Issue
Block a user