From 2f6212ad1f699ec745cd58e51a4961b9142535c5 Mon Sep 17 00:00:00 2001 From: Matthew Kennedy Date: Wed, 6 Oct 2021 13:07:55 -0700 Subject: [PATCH] fix (#3328) --- firmware/init/sensor/init_map.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/firmware/init/sensor/init_map.cpp b/firmware/init/sensor/init_map.cpp index e8ae5366d6..7462698312 100644 --- a/firmware/init/sensor/init_map.cpp +++ b/firmware/init/sensor/init_map.cpp @@ -47,8 +47,10 @@ static FallbackSensor mapCombiner(SensorType::Map, SensorType::MapFast, SensorTy // helper struct for the local getMapCfg function struct MapCfg { - float v1, v2; - float map1, map2; + float v1; + float map1; + float v2; + float map2; }; static MapCfg getMapCfg(DECLARE_CONFIG_PARAMETER_SIGNATURE) {