Adjust FEEDHOLD_TYPE_SCRAM to FEEDHOLD_TYPE_SKIP

This commit is contained in:
Rob Giseburt
2020-01-10 19:25:11 -06:00
parent caa429e17a
commit 6cb4ea5bfa
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -564,7 +564,7 @@ void cm_request_feedhold(cmFeedholdType type, cmFeedholdExit exit)
switch (cm1.hold_type) {
case FEEDHOLD_TYPE_HOLD: { op.add_action(_feedhold_no_actions); break; }
case FEEDHOLD_TYPE_ACTIONS: { op.add_action(_feedhold_with_actions); break; }
case FEEDHOLD_TYPE_SCRAM:
// case FEEDHOLD_TYPE_SCRAM: <- no longer used, use FEEDHOLD_TYPE_SKIP instead
case FEEDHOLD_TYPE_SKIP: { op.add_action(_feedhold_skip); break; }
default: {}
}