Skip to content
Snippets Groups Projects
Commit 2db384a2 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Fix compile error in configuration_store.cpp

parent ca8cec8e
Branches
Tags
No related merge requests found
...@@ -677,8 +677,8 @@ void Config_PrintSettings(bool forReplay) { ...@@ -677,8 +677,8 @@ void Config_PrintSettings(bool forReplay) {
CONFIG_ECHO_START; CONFIG_ECHO_START;
} }
SERIAL_ECHOPAIR(" M420 S", (unsigned long)mbl.active); SERIAL_ECHOPAIR(" M420 S", (unsigned long)mbl.active);
SERIAL_ECHOPAIR(" X", MESH_NUM_X_POINTS); SERIAL_ECHOPAIR(" X", (unsigned long)MESH_NUM_X_POINTS);
SERIAL_ECHOPAIR(" Y", MESH_NUM_Y_POINTS); SERIAL_ECHOPAIR(" Y", (unsigned long)MESH_NUM_Y_POINTS);
SERIAL_EOL; SERIAL_EOL;
for (int y=0; y<MESH_NUM_Y_POINTS; y++) { for (int y=0; y<MESH_NUM_Y_POINTS; y++) {
for (int x=0; x<MESH_NUM_X_POINTS; x++) { for (int x=0; x<MESH_NUM_X_POINTS; x++) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment