From 6c75a85929beee354786097fd64495b0cd38f964 Mon Sep 17 00:00:00 2001 From: Adam Wonak Date: Tue, 17 Jun 2025 06:59:55 -0700 Subject: [PATCH] fixed type mismatch in default state version. --- examples/Gravity/save_state.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Gravity/save_state.h b/examples/Gravity/save_state.h index 5ca8823..184b3f8 100644 --- a/examples/Gravity/save_state.h +++ b/examples/Gravity/save_state.h @@ -9,7 +9,7 @@ struct AppState; // Define the constants for the current firmware. const char CURRENT_SKETCH_NAME[] = "Gravity"; -const float CURRENT_SKETCH_VERSION = 0.2f; +const byte CURRENT_SKETCH_VERSION = 3; /** * @brief Manages saving and loading of the application state to and from EEPROM.