diff options
| -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++; | 
