mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-14 07:58:18 -05:00
hle: kernel: Migrate KEvent to KAutoObject.
This commit is contained in:
@ -53,6 +53,7 @@ ResultVal<Handle> HandleTable::Create(Object* obj) {
|
||||
switch (obj->GetHandleType()) {
|
||||
case HandleType::SharedMemory:
|
||||
case HandleType::Thread:
|
||||
case HandleType::Event:
|
||||
case HandleType::Process: {
|
||||
Handle handle{};
|
||||
Add(&handle, reinterpret_cast<KAutoObject*>(obj), {});
|
||||
|
Reference in New Issue
Block a user