diff options
author | bloodstalker <thabogre@gmail.com> | 2017-06-22 17:31:58 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-06-22 17:31:58 +0000 |
commit | a5659c8c770233b8a2ffd75446ac46b7a4600616 (patch) | |
tree | 2f074635b861afdffaf35ddd9e716ae2898d27a9 | |
parent | mutation hosts (diff) | |
download | mutator-a5659c8c770233b8a2ffd75446ac46b7a4600616.tar.gz mutator-a5659c8c770233b8a2ffd75446ac46b7a4600616.zip |
cosmetic
-rw-r--r-- | bruiser/bruiser.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bruiser/bruiser.cpp b/bruiser/bruiser.cpp index 4beab84..42de9e0 100644 --- a/bruiser/bruiser.cpp +++ b/bruiser/bruiser.cpp @@ -925,7 +925,8 @@ class LuaWrapper unsigned int tempint = 0; while(std::getline(historyfile, tempstring)) { - printf(GREEN"%d - %s", tempint, tempstring.c_str()); + printf(BLUE"%d ", tempint); + printf(CYAN"%s", tempstring.c_str()); printf(NORMAL"\n"); tempint++; |