mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-06-08 19:53:15 +00:00
core: Fix some missing uses of ExecuteGuest. (#1214)
This commit is contained in:
parent
388d717205
commit
1a34c2a189
6 changed files with 30 additions and 19 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue