Skip to content

Commit

Permalink
Fix sys_config_unregister_service
Browse files Browse the repository at this point in the history
  • Loading branch information
Vestrel committed Jan 5, 2025
1 parent 30741b8 commit 751ffbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpcs3/Emu/Cell/lv2/sys_config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

// 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)
{
return CELL_ESRCH;
Expand Down

0 comments on commit 751ffbb

Please sign in to comment.