Merge pull request #2372 from leptun/MK3_fix_verbosity

Fix SUPPORT_VERBOSITY
This commit is contained in:
DRracer 2020-03-23 10:53:39 +01:00 committed by GitHub
commit 468b0e210c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -4999,7 +4999,7 @@ if(eSoundMode!=e_SOUND_MODE_SILENT)
#ifdef SUPPORT_VERBOSITY
if (verbosity_level >= 1) {
clamped = world2machine_clamp(current_position[X_AXIS], current_position[Y_AXIS]);
bool clamped = world2machine_clamp(current_position[X_AXIS], current_position[Y_AXIS]);
SERIAL_PROTOCOL(mesh_point);
clamped ? SERIAL_PROTOCOLPGM(": xy clamped.\n") : SERIAL_PROTOCOLPGM(": no xy clamping\n");
}