Skip to content

Commit dd6efe9

Browse files
committedAug 22, 2019
Restore documented M503 behavior
1 parent 6429b8b commit dd6efe9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Marlin/src/gcode/eeprom/M500-M504.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ void GcodeSuite::M502() {
5252
* M503: print settings currently in memory
5353
*/
5454
void GcodeSuite::M503() {
55-
(void)settings.report(parser.boolval('S', true));
55+
(void)settings.report(!parser.boolval('S', true));
5656
}
5757

5858
#endif // !DISABLE_M503

0 commit comments

Comments
 (0)
Please sign in to comment.