diff options
| author | 2021-04-23 09:35:00 -0400 | |
|---|---|---|
| committer | 2021-04-23 09:39:56 -0400 | |
| commit | 502f3cef87a571e30fb7cc6b6b95a8bc99092b52 (patch) | |
| tree | d7e231f7fe3f5d052fac2c0f3cba4f9532544351 /src | |
| parent | Merge pull request #6223 from lat9nq/ffmpeg-external-fixes (diff) | |
| download | yuzu-502f3cef87a571e30fb7cc6b6b95a8bc99092b52.tar.gz yuzu-502f3cef87a571e30fb7cc6b6b95a8bc99092b52.tar.xz yuzu-502f3cef87a571e30fb7cc6b6b95a8bc99092b52.zip | |
acc/lbl: Remove unused variables
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/acc/acc.cpp | 4 | ||||
| -rw-r--r-- | src/core/hle/service/lbl/lbl.cpp | 2 |
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 | |||
| 702 | } | 702 | } |
| 703 | 703 | ||
| 704 | void Module::Interface::InitializeApplicationInfo(Kernel::HLERequestContext& ctx) { | 704 | void Module::Interface::InitializeApplicationInfo(Kernel::HLERequestContext& ctx) { |
| 705 | IPC::RequestParser rp{ctx}; | ||
| 706 | |||
| 707 | LOG_DEBUG(Service_ACC, "called"); | 705 | LOG_DEBUG(Service_ACC, "called"); |
| 708 | IPC::ResponseBuilder rb{ctx, 2}; | 706 | IPC::ResponseBuilder rb{ctx, 2}; |
| 709 | rb.Push(InitializeApplicationInfoBase()); | 707 | rb.Push(InitializeApplicationInfoBase()); |
| 710 | } | 708 | } |
| 711 | 709 | ||
| 712 | void Module::Interface::InitializeApplicationInfoRestricted(Kernel::HLERequestContext& ctx) { | 710 | void Module::Interface::InitializeApplicationInfoRestricted(Kernel::HLERequestContext& ctx) { |
| 713 | IPC::RequestParser rp{ctx}; | ||
| 714 | |||
| 715 | LOG_WARNING(Service_ACC, "(Partial implementation) called"); | 711 | LOG_WARNING(Service_ACC, "(Partial implementation) called"); |
| 716 | 712 | ||
| 717 | // TODO(ogniK): We require checking if the user actually owns the title and what not. As of | 713 | // 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: | |||
| 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!"); |