From c40ea1f0fd28f421bad4f25b660e2316e4c5f2e6 Mon Sep 17 00:00:00 2001
From: Scott Lahteine <github@thinkyhead.com>
Date: Wed, 3 Oct 2018 11:34:34 -0500
Subject: [PATCH] Update EEPROM_VERSION

And set EEPROM_OFFSET to 0, since the historical 100 skipped bytes are never used.
---
 Marlin/src/module/configuration_store.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Marlin/src/module/configuration_store.cpp b/Marlin/src/module/configuration_store.cpp
index 1ae61a5ad9..25574bdf3b 100644
--- a/Marlin/src/module/configuration_store.cpp
+++ b/Marlin/src/module/configuration_store.cpp
@@ -37,8 +37,8 @@
  */
 
 // Change EEPROM version if the structure changes
-#define EEPROM_VERSION "V58"
-#define EEPROM_OFFSET 100
+#define EEPROM_VERSION "V59"
+#define EEPROM_OFFSET 0
 
 // Check the integrity of data offsets.
 // Can be disabled for production build.