diff options
| author | bunnei <bunneidev@gmail.com> | 2021-10-04 17:20:46 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-04 17:20:46 -0700 |
| commit | b8694399693c13e04c049b474354c8efef1874ee (patch) | |
| tree | 81aa763477da33921ac1047ae0dc9a363dc43e3a /src/core/hle/service/aoc/aoc_u.h | |
| parent | 158a69311195c1cb5c39bae3fddeaeaed3634078 (diff) | |
| parent | fadcee14f8fca1b76b4ea48b1cfd136ccae8d182 (diff) | |
Merge pull request #7103 from Morph1984/service-ctx-event
service: Replace all service event creation with ServiceContext::CreateEvent
Diffstat (limited to 'src/core/hle/service/aoc/aoc_u.h')
| -rw-r--r-- | src/core/hle/service/aoc/aoc_u.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/service/aoc/aoc_u.h b/src/core/hle/service/aoc/aoc_u.h index bb6ffb8eb..31d645be8 100644 --- a/src/core/hle/service/aoc/aoc_u.h +++ b/src/core/hle/service/aoc/aoc_u.h @@ -4,7 +4,7 @@ #pragma once -#include "core/hle/kernel/k_event.h" +#include "core/hle/service/kernel_helpers.h" #include "core/hle/service/service.h" namespace Core { @@ -33,7 +33,9 @@ private: void CreatePermanentEcPurchasedEventManager(Kernel::HLERequestContext& ctx); std::vector<u64> add_on_content; - Kernel::KEvent aoc_change_event; + KernelHelpers::ServiceContext service_context; + + Kernel::KEvent* aoc_change_event; }; /// Registers all AOC services with the specified service manager. |
