Change openFile default to "not-push" instead of "do-replace"

This commit is contained in:
Scott Lahteine
2016-03-29 03:16:35 -07:00
parent 372f93cc7a
commit 27d70599d4
3 changed files with 4 additions and 4 deletions

View File

@@ -3704,7 +3704,7 @@ inline void gcode_M31() {
bool call_procedure = code_seen('P') && (seen_pointer < namestartpos);
if (card.cardOK) {
card.openFile(namestartpos, true, !call_procedure);
card.openFile(namestartpos, true, call_procedure);
if (code_seen('S') && seen_pointer < namestartpos) // "S" (must occur _before_ the filename!)
card.setIndex(code_value_short());