mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 08:59:59 +00:00
address name shadowing with system
This commit is contained in:
parent
4e2aa50cef
commit
9141816b10
1 changed files with 2 additions and 2 deletions
|
@ -7,8 +7,8 @@
|
||||||
#include "core/hle/service/acc/async_context.h"
|
#include "core/hle/service/acc/async_context.h"
|
||||||
|
|
||||||
namespace Service::Account {
|
namespace Service::Account {
|
||||||
IAsyncContext::IAsyncContext(Core::System& system)
|
IAsyncContext::IAsyncContext(Core::System& system_)
|
||||||
: ServiceFramework{system, "IAsyncContext"}, compeletion_event{system.Kernel()} {
|
: ServiceFramework{system_, "IAsyncContext"}, compeletion_event{system_.Kernel()} {
|
||||||
|
|
||||||
Kernel::KAutoObject::Create(std::addressof(compeletion_event));
|
Kernel::KAutoObject::Create(std::addressof(compeletion_event));
|
||||||
compeletion_event.Initialize("IAsyncContext:CompletionEvent");
|
compeletion_event.Initialize("IAsyncContext:CompletionEvent");
|
||||||
|
|
Loading…
Reference in a new issue