aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/aoc/aoc_u.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-04-04 00:56:09 -0700
committerbunnei <bunneidev@gmail.com>2021-05-05 16:40:50 -0700
commitaddc0bf0379e075786048921bede6e089552a6db (patch)
tree7fa8819b52db29e1b354410441dd8f2438e2ed4a /src/core/hle/service/aoc/aoc_u.h
parent086db71e942dc3468bccb741cabf62fdd221e790 (diff)
hle: kernel: Migrate KEvent to KAutoObject.
Diffstat (limited to 'src/core/hle/service/aoc/aoc_u.h')
-rw-r--r--src/core/hle/service/aoc/aoc_u.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/aoc/aoc_u.h b/src/core/hle/service/aoc/aoc_u.h
index 1aa23529e..65095baa2 100644
--- a/src/core/hle/service/aoc/aoc_u.h
+++ b/src/core/hle/service/aoc/aoc_u.h
@@ -4,6 +4,7 @@
#pragma once
+#include "core/hle/kernel/k_event.h"
#include "core/hle/service/service.h"
namespace Core {
@@ -31,7 +32,7 @@ private:
void CreatePermanentEcPurchasedEventManager(Kernel::HLERequestContext& ctx);
std::vector<u64> add_on_content;
- std::shared_ptr<Kernel::KEvent> aoc_change_event;
+ Kernel::KEvent aoc_change_event;
};
/// Registers all AOC services with the specified service manager.