fix bugs with SPI shutdown

This commit is contained in:
StapleButter
2017-10-01 03:19:39 +02:00
parent 9ad89d8cb5
commit 1975efaeea
3 changed files with 7 additions and 5 deletions

View File

@ -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);
}