Fix M503 S parameter

This commit is contained in:
Scott Lahteine 2017-12-06 20:57:05 -06:00
parent a5b20fec2f
commit 6e197d4a42
3 changed files with 4 additions and 4 deletions

View File

@ -9917,7 +9917,7 @@ inline void gcode_M502() {
* M503: print settings currently in memory * M503: print settings currently in memory
*/ */
inline void gcode_M503() { inline void gcode_M503() {
(void)settings.report(parser.boolval('S')); (void)settings.report(parser.seen('S') && !parser.value_bool());
} }
#endif #endif

View File

@ -1547,7 +1547,7 @@ void MarlinSettings::reset() {
* *
* Unless specifically disabled, M503 is available even without EEPROM * Unless specifically disabled, M503 is available even without EEPROM
*/ */
void MarlinSettings::report(bool forReplay) { void MarlinSettings::report(const bool forReplay) {
/** /**
* Announce current units, in case inches are being displayed * Announce current units, in case inches are being displayed

View File

@ -52,10 +52,10 @@ class MarlinSettings {
#endif #endif
#if DISABLED(DISABLE_M503) #if DISABLED(DISABLE_M503)
static void report(bool forReplay=false); static void report(const bool forReplay=false);
#else #else
FORCE_INLINE FORCE_INLINE
static void report(bool forReplay=false) { UNUSED(forReplay); } static void report(const bool forReplay=false) { UNUSED(forReplay); }
#endif #endif
private: private: