This commit is contained in:
iceman1001
2019-05-01 06:04:33 +02:00
parent 63d67e2b0f
commit 5ab9716e77
2 changed files with 14 additions and 14 deletions

View File

@@ -88,7 +88,7 @@ int main(int argc, char **argv) {
if (res < 0)
return -1;
PrintAndLogEx(NORMAL, "\n" _BLUE_("Flashing..."));
PrintAndLogEx(SUCCESS, "\n" _BLUE_("Flashing..."));
for (int i = 0; i < num_files; i++) {
res = flash_write(&files[i]);
@@ -98,7 +98,7 @@ int main(int argc, char **argv) {
PrintAndLogEx(NORMAL, "\n");
}
PrintAndLogEx(NORMAL, _BLUE_("Resetting hardware..."));
PrintAndLogEx(SUCCESS, _BLUE_("Resetting hardware..."));
res = flash_stop_flashing();
if (res < 0)
@@ -106,6 +106,6 @@ int main(int argc, char **argv) {
CloseProxmark();
PrintAndLogEx(NORMAL, _BLUE_("All done.") "\n\nHave a nice day!");
PrintAndLogEx(SUCCESS, _BLUE_("All done.") "\n\nHave a nice day!");
return 0;
}