fixed a warning

This commit is contained in:
thrust26 2018-08-22 15:29:35 +02:00
parent 12b18e5b71
commit 7a94ad0a8c
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class DebuggerParser
static inline string red(const string& msg = "")
{
return char(kDbgColorRed) + msg;
return char(kDbgColorRed & 0xff) + msg;
}
static inline string inverse(const string& msg = "")
{