From b91e21edde0320f197fe28fcc0d62e5e292dbfd6 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Tue, 7 May 2019 12:29:26 +0200 Subject: [PATCH] better output from setting prompt, cursor is still inside ... --- client/proxmark3.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/proxmark3.c b/client/proxmark3.c index b8ca3e4ff..4d185afb2 100644 --- a/client/proxmark3.c +++ b/client/proxmark3.c @@ -57,7 +57,8 @@ int check_comm(void) { if ( IsCommunicationThreadDead() && session.pm3_present) { rl_set_prompt("[offline] "PROXPROMPT); session.pm3_present = false; - PrintAndLogEx(INFO, "Running in " _YELLOW_("OFFLINE") "mode. Use \"hw connect\" to reconnect\n"); + PrintAndLogEx(INFO, "\nRunning in " _YELLOW_("OFFLINE") "mode. Use \"hw connect\" to reconnect\n"); + } return 0; }