mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-11 06:17:57 -05:00
hle: kernel: Refactor IPC interfaces to not use std::shared_ptr.
This commit is contained in:
@ -178,7 +178,7 @@ void Module::SignalSyncpt(const u32 syncpoint_id, const u32 value) {
|
||||
}
|
||||
|
||||
std::shared_ptr<Kernel::KReadableEvent> Module::GetEvent(const u32 event_id) const {
|
||||
return events_interface.events[event_id].event->GetReadableEvent();
|
||||
return SharedFrom(events_interface.events[event_id].event->GetReadableEvent());
|
||||
}
|
||||
|
||||
std::shared_ptr<Kernel::KWritableEvent> Module::GetEventWriteable(const u32 event_id) const {
|
||||
|
Reference in New Issue
Block a user