From dcc430b575df0602dbcb499839043ad6ebb231ec Mon Sep 17 00:00:00 2001 From: Michael Farrell Date: Wed, 21 Feb 2018 20:30:59 +1100 Subject: [PATCH] Add in new version of "waiting for response" string that was reverted in merge --- client/comms.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/comms.c b/client/comms.c index 5cea70d6..0374bc83 100644 --- a/client/comms.c +++ b/client/comms.c @@ -341,7 +341,7 @@ bool WaitForResponseTimeoutW(uint64_t cmd, UsbCommand* response, size_t ms_timeo if (msclock() - start_time > 2000 && show_warning) { // 2 seconds elapsed (but this doesn't mean the timeout was exceeded) PrintAndLog("Waiting for a response from the proxmark..."); - PrintAndLog("Don't forget to cancel its operation first by pressing on the button"); + PrintAndLog("You can cancel this operation by pressing the pm3 button"); show_warning = false; } }