mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
fix defined
This commit is contained in:
parent
c59791d21c
commit
99381b4386
1 changed files with 2 additions and 2 deletions
|
@ -90,7 +90,7 @@ static void showBanner(void) {
|
||||||
g_printAndLog = PRINTANDLOG_PRINT;
|
g_printAndLog = PRINTANDLOG_PRINT;
|
||||||
|
|
||||||
PrintAndLogEx(NORMAL, "\n");
|
PrintAndLogEx(NORMAL, "\n");
|
||||||
#if defined(__linux__) || (__APPLE__) || (_WIN32)
|
#if defined(__linux__) || defined(__APPLE__) || defined(_WIN32)
|
||||||
PrintAndLogEx(NORMAL, " " _BLUE_("██████╗ ███╗ ███╗ ████╗ "));
|
PrintAndLogEx(NORMAL, " " _BLUE_("██████╗ ███╗ ███╗ ████╗ "));
|
||||||
PrintAndLogEx(NORMAL, " " _BLUE_("██╔══██╗████╗ ████║ ══█║"));
|
PrintAndLogEx(NORMAL, " " _BLUE_("██╔══██╗████╗ ████║ ══█║"));
|
||||||
PrintAndLogEx(NORMAL, " " _BLUE_("██████╔╝██╔████╔██║ ████╔╝"));
|
PrintAndLogEx(NORMAL, " " _BLUE_("██████╔╝██╔████╔██║ ████╔╝"));
|
||||||
|
@ -893,7 +893,7 @@ int main(int argc, char *argv[]) {
|
||||||
|
|
||||||
session.stdinOnTTY = isatty(STDIN_FILENO);
|
session.stdinOnTTY = isatty(STDIN_FILENO);
|
||||||
session.stdoutOnTTY = isatty(STDOUT_FILENO);
|
session.stdoutOnTTY = isatty(STDOUT_FILENO);
|
||||||
#if defined(__linux__) || (__APPLE__)
|
#if defined(__linux__) || defined(__APPLE__)
|
||||||
// it's okay to use color if:
|
// it's okay to use color if:
|
||||||
// * Linux or OSX
|
// * Linux or OSX
|
||||||
// * Not redirected to a file but printed to term
|
// * Not redirected to a file but printed to term
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue