Make bed correction matrix const

This commit is contained in:
Alex Voinea 2023-05-06 17:12:08 +02:00
parent be3465cf18
commit 3ccf2d60c0
No known key found for this signature in database
GPG Key ID: 37EDFD565CB33BAD
1 changed files with 1 additions and 1 deletions

View File

@ -3030,7 +3030,7 @@ static void gcode_G80()
}
return 0;
};
int8_t correction[4] = {
const int8_t correction[4] = {
bedCorrectHelper('L', (uint8_t*)EEPROM_BED_CORRECTION_LEFT),
bedCorrectHelper('R', (uint8_t*)EEPROM_BED_CORRECTION_RIGHT),
bedCorrectHelper('F', (uint8_t*)EEPROM_BED_CORRECTION_FRONT),