1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 10:42:36 +01:00

Unbreak BSD

This commit is contained in:
Elad Ashkenazi 2023-01-09 21:20:13 +02:00 committed by GitHub
parent 0946e5945f
commit 36a55660bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -851,7 +851,7 @@ namespace rsx
return;
}
g_fxo->get<vblank_thread>().set_thread(std::make_shared<named_thread<std::function<void()>>>("VBlank Thread", [this]()
g_fxo->get<vblank_thread>().set_thread(std::shared_ptr<named_thread<std::function<void()>>>(new named_thread<std::function<void()>>("VBlank Thread"sv, [this]() -> void
{
// See sys_timer_usleep for details
#ifdef __linux__
@ -925,7 +925,7 @@ namespace rsx
start_time = rsx::uclock() - start_time;
}
}
}));
})));
struct join_vblank
{