lv2: Remove flags from IPC-supported objects

This commit is contained in:
Eladash 2021-04-15 08:38:17 +03:00 committed by Ivan
parent ba1699a831
commit a16cc3ac8a
10 changed files with 7 additions and 20 deletions

View file

@ -34,7 +34,7 @@ error_code sys_rwlock_create(ppu_thread& ppu, vm::ptr<u32> rw_lock_id, vm::ptr<s
if (auto error = lv2_obj::create<lv2_rwlock>(_attr.pshared, _attr.ipc_key, _attr.flags, [&]
{
return std::make_shared<lv2_rwlock>(protocol, _attr.pshared, _attr.ipc_key, _attr.flags, _attr.name_u64);
return std::make_shared<lv2_rwlock>(protocol, _attr.pshared, _attr.ipc_key, _attr.name_u64);
}))
{
return error;