summaryrefslogtreecommitdiff
path: root/src/core/hle/service/lbl
diff options
context:
space:
mode:
authorGravatar Lioncash2021-04-23 09:35:00 -0400
committerGravatar Lioncash2021-04-23 09:39:56 -0400
commit502f3cef87a571e30fb7cc6b6b95a8bc99092b52 (patch)
treed7e231f7fe3f5d052fac2c0f3cba4f9532544351 /src/core/hle/service/lbl
parentMerge pull request #6223 from lat9nq/ffmpeg-external-fixes (diff)
downloadyuzu-502f3cef87a571e30fb7cc6b6b95a8bc99092b52.tar.gz
yuzu-502f3cef87a571e30fb7cc6b6b95a8bc99092b52.tar.xz
yuzu-502f3cef87a571e30fb7cc6b6b95a8bc99092b52.zip
acc/lbl: Remove unused variables
Diffstat (limited to 'src/core/hle/service/lbl')
-rw-r--r--src/core/hle/service/lbl/lbl.cpp2
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:
79 } 79 }
80 80
81 void GetCurrentBrightnessSetting(Kernel::HLERequestContext& ctx) { 81 void GetCurrentBrightnessSetting(Kernel::HLERequestContext& ctx) {
82 IPC::RequestParser rp{ctx};
83 auto brightness = current_brightness; 82 auto brightness = current_brightness;
84 if (!std::isfinite(brightness)) { 83 if (!std::isfinite(brightness)) {
85 LOG_ERROR(Service_LBL, "Brightness is infinite!"); 84 LOG_ERROR(Service_LBL, "Brightness is infinite!");
@@ -272,7 +271,6 @@ private:
272 } 271 }
273 272
274 void GetCurrentBrightnessSettingForVrMode(Kernel::HLERequestContext& ctx) { 273 void GetCurrentBrightnessSettingForVrMode(Kernel::HLERequestContext& ctx) {
275 IPC::RequestParser rp{ctx};
276 auto brightness = current_vr_brightness; 274 auto brightness = current_vr_brightness;
277 if (!std::isfinite(brightness)) { 275 if (!std::isfinite(brightness)) {
278 LOG_ERROR(Service_LBL, "Brightness is infinite!"); 276 LOG_ERROR(Service_LBL, "Brightness is infinite!");