diff options
| -rw-r--r-- | src/core/hle/service/acc/async_context.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/acc/async_context.cpp b/src/core/hle/service/acc/async_context.cpp index a58429090..a9a8888ed 100644 --- a/src/core/hle/service/acc/async_context.cpp +++ b/src/core/hle/service/acc/async_context.cpp | |||
| @@ -7,8 +7,8 @@ | |||
| 7 | #include "core/hle/service/acc/async_context.h" | 7 | #include "core/hle/service/acc/async_context.h" |
| 8 | 8 | ||
| 9 | namespace Service::Account { | 9 | namespace Service::Account { |
| 10 | IAsyncContext::IAsyncContext(Core::System& system) | 10 | IAsyncContext::IAsyncContext(Core::System& system_) |
| 11 | : ServiceFramework{system, "IAsyncContext"}, compeletion_event{system.Kernel()} { | 11 | : ServiceFramework{system_, "IAsyncContext"}, compeletion_event{system_.Kernel()} { |
| 12 | 12 | ||
| 13 | Kernel::KAutoObject::Create(std::addressof(compeletion_event)); | 13 | Kernel::KAutoObject::Create(std::addressof(compeletion_event)); |
| 14 | compeletion_event.Initialize("IAsyncContext:CompletionEvent"); | 14 | compeletion_event.Initialize("IAsyncContext:CompletionEvent"); |