mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-02-13 12:40:19 +00:00
11 lines
156 B
C++
11 lines
156 B
C++
#include "stdafx.h"
|
|
#include "Emu/System.h"
|
|
#include "Emu/CPU/CPUThread.h"
|
|
|
|
#include "Utilities/SMutex.h"
|
|
|
|
bool SM_IsAborted()
|
|
{
|
|
return Emu.IsStopped();
|
|
}
|