mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-22 10:42:36 +01:00
Unbreak BSD
This commit is contained in:
parent
0946e5945f
commit
36a55660bf
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user