mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 05:37:58 -05:00
Kernel: Start using boost::intrusive_ptr for lifetime management
This commit is contained in:
@ -30,7 +30,7 @@ public:
|
||||
|
||||
/// Arbitrate an address
|
||||
ResultCode ArbitrateAddress(Handle handle, ArbitrationType type, u32 address, s32 value) {
|
||||
Object* object = Kernel::g_handle_table.GetGeneric(handle);
|
||||
Object* object = Kernel::g_handle_table.GetGeneric(handle).get();
|
||||
if (object == nullptr)
|
||||
return InvalidHandle(ErrorModule::Kernel);
|
||||
|
||||
|
Reference in New Issue
Block a user