hle: kernel: Migrate KEvent to KAutoObject.

This commit is contained in:
bunnei 2021-04-04 00:56:09 -07:00
parent 11f9080d2e
commit 949231d69c
37 changed files with 269 additions and 266 deletions

View file

@ -35,7 +35,7 @@ class nvdevice;
/// Represents an Nvidia event
struct NvEvent {
std::shared_ptr<Kernel::KEvent> event;
std::unique_ptr<Kernel::KEvent> event;
Fence fence{};
};