summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-04-24 00:48:47 +0200
committerGitHub <noreply@github.com>2021-04-24 00:48:47 +0200
commit2e268abe42ce01632504d6a46da698a3577a13e1 (patch)
treeb9182928ad347175f5998ffee49c8b1115888a24
parentMerge pull request #6231 from lioncash/aes (diff)
parentacc/lbl: Remove unused variables (diff)
downloadyuzu-2e268abe42ce01632504d6a46da698a3577a13e1.tar
yuzu-2e268abe42ce01632504d6a46da698a3577a13e1.tar.gz
yuzu-2e268abe42ce01632504d6a46da698a3577a13e1.tar.bz2
yuzu-2e268abe42ce01632504d6a46da698a3577a13e1.tar.lz
yuzu-2e268abe42ce01632504d6a46da698a3577a13e1.tar.xz
yuzu-2e268abe42ce01632504d6a46da698a3577a13e1.tar.zst
yuzu-2e268abe42ce01632504d6a46da698a3577a13e1.zip
-rw-r--r--src/core/hle/service/acc/acc.cpp4
-rw-r--r--src/core/hle/service/lbl/lbl.cpp2
2 files changed, 0 insertions, 6 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
diff --git a/src/core/hle/service/lbl/lbl.cpp b/src/core/hle/service/lbl/lbl.cpp
index f4490f3d9..e11a0c45a 100644
--- a/src/core/hle/service/lbl/lbl.cpp
+++ b/src/core/hle/service/lbl/lbl.cpp
@@ -79,7 +79,6 @@ private:
}
void GetCurrentBrightnessSetting(Kernel::HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
auto brightness = current_brightness;
if (!std::isfinite(brightness)) {
LOG_ERROR(Service_LBL, "Brightness is infinite!");
@@ -272,7 +271,6 @@ private:
}
void GetCurrentBrightnessSettingForVrMode(Kernel::HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
auto brightness = current_vr_brightness;
if (!std::isfinite(brightness)) {
LOG_ERROR(Service_LBL, "Brightness is infinite!");