diff options
| author | Lioncash <mathew1800@gmail.com> | 2021-04-23 09:35:00 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2021-04-23 09:39:56 -0400 |
| commit | 502f3cef87a571e30fb7cc6b6b95a8bc99092b52 (patch) | |
| tree | d7e231f7fe3f5d052fac2c0f3cba4f9532544351 /src/core/hle/service/acc | |
| parent | 607ff3489c540a9ec72f37f06d550e45641135d7 (diff) | |
acc/lbl: Remove unused variables
Diffstat (limited to 'src/core/hle/service/acc')
| -rw-r--r-- | src/core/hle/service/acc/acc.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp index 52535ecc0..5450dcf0f 100644 --- a/src/core/hle/service/acc/acc.cpp +++ b/src/core/hle/service/acc/acc.cpp @@ -702,16 +702,12 @@ void Module::Interface::IsUserRegistrationRequestPermitted(Kernel::HLERequestCon } void Module::Interface::InitializeApplicationInfo(Kernel::HLERequestContext& ctx) { - IPC::RequestParser rp{ctx}; - LOG_DEBUG(Service_ACC, "called"); IPC::ResponseBuilder rb{ctx, 2}; rb.Push(InitializeApplicationInfoBase()); } void Module::Interface::InitializeApplicationInfoRestricted(Kernel::HLERequestContext& ctx) { - IPC::RequestParser rp{ctx}; - LOG_WARNING(Service_ACC, "(Partial implementation) called"); // TODO(ogniK): We require checking if the user actually owns the title and what not. As of |
