aboutsummaryrefslogtreecommitdiff
path: root/client/src
diff options
context:
space:
mode:
Diffstat (limited to 'client/src')
-rw-r--r--client/src/util/io.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/util/io.h b/client/src/util/io.h
index 99339c5..ab48b90 100644
--- a/client/src/util/io.h
+++ b/client/src/util/io.h
@@ -12,7 +12,7 @@ namespace io {
#ifndef _REL
static auto handle = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleTextAttribute(handle, FOREGROUND_GREEN);
- fmt::print("$> ");
+ fmt::print("[+] ");
SetConsoleTextAttribute(handle, FOREGROUND_GREEN | FOREGROUND_BLUE | FOREGROUND_RED);
std::string msg{ str };
@@ -27,7 +27,7 @@ namespace io {
#ifndef _REL
static auto handle = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleTextAttribute(handle, FOREGROUND_RED);
- fmt::print("$> ");
+ fmt::print("[!] ");
SetConsoleTextAttribute(handle, FOREGROUND_GREEN | FOREGROUND_BLUE | FOREGROUND_RED);
std::string msg{ str };