diff options
| author | 2021-09-06 22:13:51 +1000 | |
|---|---|---|
| committer | 2021-09-06 22:13:51 +1000 | |
| commit | 9141816b101cf12635f3a64cbe796c93b6108cdd (patch) | |
| tree | 8006b691da2fca13c2bb3d203bbf1cb989bbb311 /src/core | |
| parent | account: EnsureTokenIdCacheAsync (diff) | |
| download | yuzu-9141816b101cf12635f3a64cbe796c93b6108cdd.tar.gz yuzu-9141816b101cf12635f3a64cbe796c93b6108cdd.tar.xz yuzu-9141816b101cf12635f3a64cbe796c93b6108cdd.zip | |
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 @@ | |||
| 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"); |