From 6484bd641c24d3c92648caa306cac1f1c4b1b3c4 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Fri, 26 Jun 2020 00:04:41 +0200 Subject: [PATCH] textual --- client/src/cmdlfio.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/client/src/cmdlfio.c b/client/src/cmdlfio.c index 92f914059..5e729fd82 100644 --- a/client/src/cmdlfio.c +++ b/client/src/cmdlfio.c @@ -47,12 +47,12 @@ static int usage_lf_io_sim(void) { PrintAndLogEx(NORMAL, "Usage: lf io sim [h] "); PrintAndLogEx(NORMAL, "Options:"); PrintAndLogEx(NORMAL, " h : This help"); - PrintAndLogEx(NORMAL, " : 8bit version (decimal)"); - PrintAndLogEx(NORMAL, " : 8bit value facility code (hex)"); - PrintAndLogEx(NORMAL, " : 16bit value card number (decimal)"); + PrintAndLogEx(NORMAL, " : 8bit version (" _YELLOW_("decimal") ")"); + PrintAndLogEx(NORMAL, " : 8bit value facility code (" _YELLOW_("hex") ")"); + PrintAndLogEx(NORMAL, " : 16bit value card number (" _YELLOW_("decimal") ")"); PrintAndLogEx(NORMAL, ""); PrintAndLogEx(NORMAL, "Examples:"); - PrintAndLogEx(NORMAL, _YELLOW_(" lf io sim 26 101 1337")); + PrintAndLogEx(NORMAL, _YELLOW_(" lf io sim 01 101 1337")); return PM3_SUCCESS; } @@ -63,13 +63,13 @@ static int usage_lf_io_clone(void) { PrintAndLogEx(NORMAL, "Usage: lf io clone [h] [Q5]"); PrintAndLogEx(NORMAL, "Options:"); PrintAndLogEx(NORMAL, " h : This help"); - PrintAndLogEx(NORMAL, " : 8bit version (decimal)"); - PrintAndLogEx(NORMAL, " : 8bit value facility code (hex)"); - PrintAndLogEx(NORMAL, " : 16bit value card number (decimal)"); + PrintAndLogEx(NORMAL, " : 8bit version (" _YELLOW_("decimal") ")"); + PrintAndLogEx(NORMAL, " : 8bit value facility code (" _YELLOW_("hex") ")"); + PrintAndLogEx(NORMAL, " : 16bit value card number (" _YELLOW_("decimal") ")"); PrintAndLogEx(NORMAL, " Q5 : optional - clone to Q5 (T5555) instead of T55x7 chip"); PrintAndLogEx(NORMAL, ""); PrintAndLogEx(NORMAL, "Examples:"); - PrintAndLogEx(NORMAL, _YELLOW_(" lf io clone 26 101 1337")); + PrintAndLogEx(NORMAL, _YELLOW_(" lf io clone 01 101 1337")); return PM3_SUCCESS; }