Fix mesh point sign
Most obvious part of #17670 Co-Authored-By: FilippoR <filippo.rossoni@gmail.com>
This commit is contained in:
parent
75c17c7a67
commit
f907de272a
1 changed files with 2 additions and 1 deletions
|
@ -41,7 +41,8 @@ static int16_t ubl_storage_slot = 0,
|
||||||
ubl_fillin_amount = 5,
|
ubl_fillin_amount = 5,
|
||||||
ubl_height_amount = 1;
|
ubl_height_amount = 1;
|
||||||
|
|
||||||
static uint8_t n_edit_pts = 1, x_plot = 0, y_plot = 0;
|
static uint8_t n_edit_pts = 1;
|
||||||
|
static int8_t x_plot = 0, y_plot = 0; // May be negative during move
|
||||||
|
|
||||||
#if HAS_HEATED_BED
|
#if HAS_HEATED_BED
|
||||||
static int16_t custom_bed_temp = 50;
|
static int16_t custom_bed_temp = 50;
|
||||||
|
|
Reference in a new issue