Skip to content
Snippets Groups Projects
Commit ad90e851 authored by Richard Wackerbarth's avatar Richard Wackerbarth
Browse files

Use a small unsigned integer type

parent 29b456ae
Branches
Tags
No related merge requests found
...@@ -168,7 +168,7 @@ void Config_StoreSettings() { ...@@ -168,7 +168,7 @@ void Config_StoreSettings() {
EEPROM_WRITE_VAR(i, mesh_num_x); EEPROM_WRITE_VAR(i, mesh_num_x);
EEPROM_WRITE_VAR(i, mesh_num_y); EEPROM_WRITE_VAR(i, mesh_num_y);
dummy = 0.0f; dummy = 0.0f;
for (uint q=0; q<mesh_num_x*mesh_num_y; q++) EEPROM_WRITE_VAR(i, dummy); for (uint8_t q=0; q<mesh_num_x*mesh_num_y; q++) EEPROM_WRITE_VAR(i, dummy);
#endif // MESH_BED_LEVELING #endif // MESH_BED_LEVELING
#if DISABLED(ENABLE_AUTO_BED_LEVELING) #if DISABLED(ENABLE_AUTO_BED_LEVELING)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment