Added brackets

This commit is contained in:
Jake Hillion 2020-04-26 19:28:54 +01:00
parent 7b3e95093e
commit 25bbed17c0

View File

@ -44,7 +44,7 @@ void loop() {
case 'd': case 'd':
case 'e': case 'e':
case 'f': case 'f':
hex = hex << 2 + charMap(data); hex = (hex << 2) + charMap(data);
break; break;
case 'n': case 'n':
nextColour(); nextColour();