mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-28 13:28:01 +03:00
Unbreak BSD
This commit is contained in:
parent
0946e5945f
commit
36a55660bf
1 changed files with 2 additions and 2 deletions
|
@ -851,7 +851,7 @@ namespace rsx
|
||||||
return;
|
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
|
// See sys_timer_usleep for details
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
|
@ -925,7 +925,7 @@ namespace rsx
|
||||||
start_time = rsx::uclock() - start_time;
|
start_time = rsx::uclock() - start_time;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}));
|
})));
|
||||||
|
|
||||||
struct join_vblank
|
struct join_vblank
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue