mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-12-13 15:19:11 +00:00
core: Fix some missing uses of ExecuteGuest. (#1214)
This commit is contained in:
@@ -993,7 +993,7 @@ static void cleanup_thread(void* arg) {
|
||||
static void* run_thread(void* arg) {
|
||||
auto* thread = static_cast<ScePthread>(arg);
|
||||
Common::SetCurrentThreadName(thread->name.c_str());
|
||||
auto* linker = Common::Singleton<Core::Linker>::Instance();
|
||||
const auto* linker = Common::Singleton<Core::Linker>::Instance();
|
||||
void* ret = nullptr;
|
||||
g_pthread_self = thread;
|
||||
pthread_cleanup_push(cleanup_thread, thread);
|
||||
|
||||
Reference in New Issue
Block a user