Fix mesh point sign

Most obvious part of #17670

Co-Authored-By: FilippoR <filippo.rossoni@gmail.com>
This commit is contained in:
Scott Lahteine 2020-04-25 16:49:53 -05:00
parent 75c17c7a67
commit f907de272a

View File

@ -41,7 +41,8 @@ static int16_t ubl_storage_slot = 0,
ubl_fillin_amount = 5,
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
static int16_t custom_bed_temp = 50;