diff options
| author | 2019-11-03 04:10:12 -0500 | |
|---|---|---|
| committer | 2019-11-03 04:22:45 -0500 | |
| commit | b0ab803ce853739a0b8595ee95599d0fab46c78a (patch) | |
| tree | 0430782a5fae74d06891dad3732db26d5dd4a189 /src/core/hle/service/aoc | |
| parent | kernel: readable_event: Initialize members. (diff) | |
| download | yuzu-b0ab803ce853739a0b8595ee95599d0fab46c78a.tar.gz yuzu-b0ab803ce853739a0b8595ee95599d0fab46c78a.tar.xz yuzu-b0ab803ce853739a0b8595ee95599d0fab46c78a.zip | |
kernel: events: Remove ResetType::Automatic.
- This does not actually seem to exist in the real kernel - games reset these automatically.
# Conflicts:
# src/core/hle/service/am/applets/applets.cpp
# src/core/hle/service/filesystem/fsp_srv.cpp
Diffstat (limited to 'src/core/hle/service/aoc')
| -rw-r--r-- | src/core/hle/service/aoc/aoc_u.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/aoc/aoc_u.cpp b/src/core/hle/service/aoc/aoc_u.cpp index e9cf1e840..f36ccbc49 100644 --- a/src/core/hle/service/aoc/aoc_u.cpp +++ b/src/core/hle/service/aoc/aoc_u.cpp | |||
| @@ -67,8 +67,8 @@ AOC_U::AOC_U(Core::System& system) | |||
| 67 | RegisterHandlers(functions); | 67 | RegisterHandlers(functions); |
| 68 | 68 | ||
| 69 | auto& kernel = system.Kernel(); | 69 | auto& kernel = system.Kernel(); |
| 70 | aoc_change_event = Kernel::WritableEvent::CreateEventPair(kernel, Kernel::ResetType::Manual, | 70 | aoc_change_event = |
| 71 | "GetAddOnContentListChanged:Event"); | 71 | Kernel::WritableEvent::CreateEventPair(kernel, "GetAddOnContentListChanged:Event"); |
| 72 | } | 72 | } |
| 73 | 73 | ||
| 74 | AOC_U::~AOC_U() = default; | 74 | AOC_U::~AOC_U() = default; |