Restore documented M503 behavior

This commit is contained in:
Scott Lahteine 2019-08-22 18:56:59 -05:00
parent 6429b8bfb8
commit dd6efe96e7

View File

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