mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-08 09:09:46 +00:00
Fix sys_config_unregister_service
This commit is contained in:
parent
55117f59ee
commit
d18fcbf040
1 changed files with 1 additions and 1 deletions
|
@ -429,7 +429,7 @@ error_code sys_config_unregister_service(u32 config_hdl, u32 service_hdl)
|
||||||
sys_config.trace("sys_config_unregister_service(config_hdl=0x%x, service_hdl=0x%x)", config_hdl, service_hdl);
|
sys_config.trace("sys_config_unregister_service(config_hdl=0x%x, service_hdl=0x%x)", config_hdl, service_hdl);
|
||||||
|
|
||||||
// Remove listener from IDM
|
// Remove listener from IDM
|
||||||
auto service = idm::withdraw<lv2_config_service>(service_hdl);
|
auto service = idm::get_unlocked<lv2_config_service>(service_hdl);
|
||||||
if (!service)
|
if (!service)
|
||||||
{
|
{
|
||||||
return CELL_ESRCH;
|
return CELL_ESRCH;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue