From 39db674c45b851e5dab019469e34db3f1c2bf6a9 Mon Sep 17 00:00:00 2001 From: Michael Olbrich Date: Mon, 23 Jan 2017 18:02:16 +0100 Subject: output: use '[0m' to reset colors '[m' is supposed to have the same effect as '[0m'. However, some EFI implementations seem to ignore '[m', so use '[0m' everywhere to avoid rendering issues. Signed-off-by: Michael Olbrich Signed-off-by: Sascha Hauer --- commands/2048.c | 2 +- common/menu.c | 2 +- include/readkey.h | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/commands/2048.c b/commands/2048.c index 5ceb5cfb7d..865803a5a6 100644 --- a/commands/2048.c +++ b/commands/2048.c @@ -53,7 +53,7 @@ static void getColor(uint16_t value, char *color, size_t length) static void drawBoard(uint16_t board[SIZE][SIZE]) { int8_t x,y; - char color[40], reset[] = "\033[m"; + char color[40], reset[] = "\033[0m"; printf("\033[H"); printf("2048.c %17d pts\n\n",score); diff --git a/common/menu.c b/common/menu.c index e757216c5a..31e5c90a0f 100644 --- a/common/menu.c +++ b/common/menu.c @@ -185,7 +185,7 @@ static void print_menu_entry(struct menu *m, struct menu_entry *me, __print_entry(me->display); if (selected) - puts("\e[m"); + puts("\e[0m"); } int menu_set_selected_entry(struct menu *m, struct menu_entry* me) diff --git a/include/readkey.h b/include/readkey.h index 8398ec2e51..ed1cd1542d 100644 --- a/include/readkey.h +++ b/include/readkey.h @@ -26,8 +26,8 @@ #define ANSI_CLEAR_SCREEN "\e[2J\e[;H" -#define printf_reverse(fmt,args...) printf("\e[7m" fmt "\e[m",##args) -#define puts_reverse(fmt) puts("\e[7m" fmt "\e[m") +#define printf_reverse(fmt,args...) printf("\e[7m" fmt "\e[0m",##args) +#define puts_reverse(fmt) puts("\e[7m" fmt "\e[0m") #define gotoXY(row, col) printf("\e[%d;%dH", col, row) #define clear() puts("\e[2J") -- cgit v1.2.3