From a36b784ecd82a592823055b2206215d47aeb5a8c Mon Sep 17 00:00:00 2001 From: Iceman Date: Sat, 10 Aug 2019 18:34:02 +0200 Subject: [PATCH] chg: help text commands now green --- client/cmdparser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cmdparser.c b/client/cmdparser.c index be0de1c50..fff0fabec 100644 --- a/client/cmdparser.c +++ b/client/cmdparser.c @@ -151,7 +151,7 @@ void CmdsHelp(const command_t Commands[]) { int i = 0; while (Commands[i].Name) { if (Commands[i].IsAvailable()) - PrintAndLogEx(NORMAL, "%-16s %s", Commands[i].Name, Commands[i].Help); + PrintAndLogEx(NORMAL, _GREEN_("%-16s")" %s", Commands[i].Name, Commands[i].Help); ++i; } }