Browse Source

Restore documented M503 behavior

Scott Lahteine 4 years ago
parent
commit
dd6efe96e7
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/gcode/eeprom/M500-M504.cpp

+ 1
- 1
Marlin/src/gcode/eeprom/M500-M504.cpp View File

@@ -52,7 +52,7 @@ void GcodeSuite::M502() {
52 52
    * M503: print settings currently in memory
53 53
    */
54 54
   void GcodeSuite::M503() {
55
-    (void)settings.report(parser.boolval('S', true));
55
+    (void)settings.report(!parser.boolval('S', true));
56 56
   }
57 57
 
58 58
 #endif // !DISABLE_M503

Loading…
Cancel
Save