R&Y: Test Progress Integer Update in cmdhfmfdes.c

Signed-off-by: ry4000 <154689120+ry4000@users.noreply.github.com>
This commit is contained in:
ry4000
2025-11-03 15:00:47 +11:00
committed by GitHub
parent 4bc64fe626
commit 3a77d041e5
+2 -2
View File
@@ -2232,8 +2232,8 @@ static int CmdHF14ADesBruteApps(const char *Cmd) {
break;
}
float progress = 100.00 * (float)(id - idStart) / ((float)(idEnd - idStart));
PrintAndLogEx(INPLACE, "Progress " _YELLOW_("%0.01f") " %% current AID: %06X", progress, id);
float progress = 100.0 * (float)(id - idStart) / ((float)(idEnd - idStart));
PrintAndLogEx(INPLACE, "Brute AID Progress " _YELLOW_("%0.1ff") " %% current AID: %06X", progress, id);
res = DesfireSelectAIDHexNoFieldOn(&dctx, id);