diff options
Diffstat (limited to '')
-rwxr-xr-x | client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client.c b/client.c index 3aaa2a0..1e2ea69 100755 --- a/client.c +++ b/client.c @@ -54,7 +54,7 @@ static void clientPut(uint8_t color, char cell) { static uint8_t inputColor = COLOR_WHITE; static void colorFg(uint8_t fg) { - inputColor = (inputColor & 0xF0) | fg; + inputColor = (inputColor & 0xF8) | fg; } static void colorBg(uint8_t bg) { |