From d485e4fb0b1746b3c4c8ca61fc4f182b11f5e295 Mon Sep 17 00:00:00 2001 From: sarusani Date: Tue, 30 Jul 2024 15:15:05 +0200 Subject: [PATCH] Add type to save 50B Saves 50bytes --- Firmware/mesh_bed_calibration.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Firmware/mesh_bed_calibration.h b/Firmware/mesh_bed_calibration.h index 95b3201379..61fe08604e 100644 --- a/Firmware/mesh_bed_calibration.h +++ b/Firmware/mesh_bed_calibration.h @@ -163,7 +163,7 @@ float BED_Y(const uint8_t row); * Negative: failed */ -enum BedSkewOffsetDetectionResultType { +enum BedSkewOffsetDetectionResultType : int8_t { // Detection failed, some point was not found. BED_SKEW_OFFSET_DETECTION_POINT_FOUND = 0, //!< Point found BED_SKEW_OFFSET_DETECTION_POINT_NOT_FOUND = -1, //!< Point not found.