Fix wrong g_fxo->init_crtp name, use just init<>

This commit is contained in:
Nekotekina 2020-02-25 14:07:50 +03:00
parent 318a364d09
commit 9c9c2eb2c9
4 changed files with 5 additions and 5 deletions

View file

@ -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)
{