mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-27 13:56:24 +00:00
Fix left-shift warning
This commit is contained in:
parent
0d7736d663
commit
bb381e22b2
@ -71,7 +71,7 @@ void GcodeSuite::M7219() {
|
|||||||
}
|
}
|
||||||
else if (parser.seen('D')) {
|
else if (parser.seen('D')) {
|
||||||
const uint8_t uline = parser.value_byte() & 0x7,
|
const uint8_t uline = parser.value_byte() & 0x7,
|
||||||
line = uline + parser.byteval('U') << 3;
|
line = uline + (parser.byteval('U') << 3);
|
||||||
if (line < MAX7219_LINES) {
|
if (line < MAX7219_LINES) {
|
||||||
max7219.led_line[line] = v;
|
max7219.led_line[line] = v;
|
||||||
return max7219.refresh_line(line);
|
return max7219.refresh_line(line);
|
||||||
|
Loading…
Reference in New Issue
Block a user