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/lbl/lbl.cpp | |
| parent | 607ff3489c540a9ec72f37f06d550e45641135d7 (diff) | |
acc/lbl: Remove unused variables
Diffstat (limited to 'src/core/hle/service/lbl/lbl.cpp')
| -rw-r--r-- | src/core/hle/service/lbl/lbl.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
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!"); |
