mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 16:01:42 +12:00
Fix wrong g_fxo->init_crtp name, use just init<>
This commit is contained in:
parent
318a364d09
commit
9c9c2eb2c9
4 changed files with 5 additions and 5 deletions
|
@ -498,7 +498,7 @@ namespace rsx
|
|||
|
||||
vblank_count = 0;
|
||||
|
||||
g_fxo->init_crtp<named_thread>("VBlank Thread", [this]()
|
||||
g_fxo->init<named_thread>("VBlank Thread", [this]()
|
||||
{
|
||||
// See sys_timer_usleep for details
|
||||
#ifdef __linux__
|
||||
|
@ -564,7 +564,7 @@ namespace rsx
|
|||
}
|
||||
});
|
||||
|
||||
g_fxo->init_crtp<named_thread>("RSX Decompiler Thread", [this]
|
||||
g_fxo->init<named_thread>("RSX Decompiler Thread", [this]
|
||||
{
|
||||
if (g_cfg.video.disable_asynchronous_shader_compiler)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue