diff options
author | Chloe Marcec <dmarcecguzman@gmail.com> | 2021-09-06 22:13:51 +1000 |
---|---|---|
committer | Chloe Marcec <dmarcecguzman@gmail.com> | 2021-09-06 22:13:51 +1000 |
commit | 9141816b101cf12635f3a64cbe796c93b6108cdd (patch) | |
tree | 8006b691da2fca13c2bb3d203bbf1cb989bbb311 /src/core | |
parent | 4e2aa50cefd56f4bb119c9c6e6ab89afbb31351e (diff) |
address name shadowing with system
Diffstat (limited to 'src/core')
-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 @@ #include "core/hle/service/acc/async_context.h" namespace Service::Account { -IAsyncContext::IAsyncContext(Core::System& system) - : ServiceFramework{system, "IAsyncContext"}, compeletion_event{system.Kernel()} { +IAsyncContext::IAsyncContext(Core::System& system_) + : ServiceFramework{system_, "IAsyncContext"}, compeletion_event{system_.Kernel()} { Kernel::KAutoObject::Create(std::addressof(compeletion_event)); compeletion_event.Initialize("IAsyncContext:CompletionEvent"); |