From e31465af3688314895ba0973f4143aae5e703ed6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Jul 2026 06:33:51 +0000 Subject: [PATCH 1/2] build(deps): bump third-party/lizardbyte-common Bumps [third-party/lizardbyte-common](https://github.com/LizardByte/lizardbyte-common) from `06cd442` to `011ad2b`. - [Release notes](https://github.com/LizardByte/lizardbyte-common/releases) - [Commits](https://github.com/LizardByte/lizardbyte-common/compare/06cd442b808f02f1674f3192a84d25b9a503c482...011ad2bb139083dcf4ec21f9c09f07470891a668) --- updated-dependencies: - dependency-name: third-party/lizardbyte-common dependency-version: 011ad2bb139083dcf4ec21f9c09f07470891a668 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- third-party/lizardbyte-common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third-party/lizardbyte-common b/third-party/lizardbyte-common index 06cd442..011ad2b 160000 --- a/third-party/lizardbyte-common +++ b/third-party/lizardbyte-common @@ -1 +1 @@ -Subproject commit 06cd442b808f02f1674f3192a84d25b9a503c482 +Subproject commit 011ad2bb139083dcf4ec21f9c09f07470891a668 From 920a0b2543874177f8ad317a8c6ce497f17ea5b9 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Tue, 28 Jul 2026 10:15:15 -0400 Subject: [PATCH 2/2] chore: run clang format --- tests/unit/test_linux_consumers.cpp | 3 +-- tools/virtualhid_control.cpp | 6 ++---- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/tests/unit/test_linux_consumers.cpp b/tests/unit/test_linux_consumers.cpp index 0df2ee0..729b168 100644 --- a/tests/unit/test_linux_consumers.cpp +++ b/tests/unit/test_linux_consumers.cpp @@ -699,8 +699,7 @@ namespace { const auto deadline = std::chrono::steady_clock::now() + std::chrono::seconds {3}; while ( std::chrono::steady_clock::now() < deadline && - SDL_GameControllerGetAxis(controller.get(), SDL_CONTROLLER_AXIS_TRIGGERRIGHT) < 16000 - ) { + SDL_GameControllerGetAxis(controller.get(), SDL_CONTROLLER_AXIS_TRIGGERRIGHT) < 16000) { SDL_GameControllerUpdate(); pump_sdl_events(); std::this_thread::sleep_for(std::chrono::milliseconds {20}); diff --git a/tools/virtualhid_control.cpp b/tools/virtualhid_control.cpp index 3c49df9..35def9d 100644 --- a/tools/virtualhid_control.cpp +++ b/tools/virtualhid_control.cpp @@ -365,8 +365,7 @@ namespace { void render_device_panel(const std::vector &devices) { ImGui::TextUnformatted("Profile"); const auto *choice = current_profile_choice(); - if (const auto preview = choice == nullptr ? std::string {"Select profile"} : to_utf8(choice->label); - ImGui::BeginCombo("##profile", preview.c_str())) { + if (const auto preview = choice == nullptr ? std::string {"Select profile"} : to_utf8(choice->label); ImGui::BeginCombo("##profile", preview.c_str())) { for (std::size_t index = 0; index < profile_choices.size(); ++index) { const auto label = to_utf8(profile_choices[index].label); const auto selected = index == profile_index_; @@ -549,8 +548,7 @@ namespace { { ScopedDisabled disabled {!enabled}; - if (const auto state_label = to_utf8(battery_choices[static_cast(battery_state_index_)].label); - ImGui::BeginCombo("State", state_label.c_str())) { + if (const auto state_label = to_utf8(battery_choices[static_cast(battery_state_index_)].label); ImGui::BeginCombo("State", state_label.c_str())) { for (std::size_t index = 0; index < battery_choices.size(); ++index) { const auto label = to_utf8(battery_choices[index].label); const auto selected_state = static_cast(index) == battery_state_index_;