Skip to content

Commit

Permalink
Update misc.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
rek7 authored Mar 25, 2019
1 parent 13445f6 commit 8de57ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/misc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class misc {
return;
}
string time = formatted_time("%X");
cout << string((indent_level > 1 ? indent_level*2-1 : indent_level*2), ' ') << (indent_level > 1 ? "|" : "")
cout << string((indent_level > 1 ? indent_level*2-1 : indent_level*2), ' ') << (indent_level > 1 ? "" : "")
<< (indent_level ? "" : "") << (option.is_colored ? color : "") //https://www.copypastecharacter.com/all-characters
<< (is_time ? "[" + time + "] " : "") << "[" << status << "] " << print
<< NORMAL << endl << flush;
Expand Down

0 comments on commit 8de57ec

Please sign in to comment.