From 02b14fa63a0224d8ea96109a084e45c86a317189 Mon Sep 17 00:00:00 2001 From: Steven Zimmerman Date: Sat, 28 Feb 2026 20:22:10 -0500 Subject: [PATCH 1/3] fix: accept updated honeycomb alpha yoke snapshot (f32 precision) The snapshot expected roll: 1.0 but actual device mapping produces 0.9995117 due to u16-to-f32 conversion precision. Accept the correct value. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../snapshots/snapshot_tests__alpha_yoke_full_right_roll.snap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/flight-hotas-honeycomb/tests/snapshots/snapshot_tests__alpha_yoke_full_right_roll.snap b/crates/flight-hotas-honeycomb/tests/snapshots/snapshot_tests__alpha_yoke_full_right_roll.snap index fa63a9ff..e6368526 100644 --- a/crates/flight-hotas-honeycomb/tests/snapshots/snapshot_tests__alpha_yoke_full_right_roll.snap +++ b/crates/flight-hotas-honeycomb/tests/snapshots/snapshot_tests__alpha_yoke_full_right_roll.snap @@ -5,7 +5,7 @@ expression: state --- AlphaInputState { axes: AlphaAxes { - roll: 1.0, + roll: 0.9995117, pitch: 0.0, }, buttons: AlphaButtons { From 161dc83cf69d2213b674a1653bd6b7ad3ed6eb87 Mon Sep 17 00:00:00 2001 From: Steven Zimmerman Date: Sat, 28 Feb 2026 21:28:19 -0500 Subject: [PATCH 2/3] ci: retrigger CI run Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> From ed395ccc2f9a8664a091454cfa715d8168bd9d7c Mon Sep 17 00:00:00 2001 From: Steven Zimmerman Date: Sat, 28 Feb 2026 22:48:46 -0500 Subject: [PATCH 3/3] ci: retrigger CI Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>