mirror of https://github.com/stella-emu/stella.git
fixed a warning
This commit is contained in:
parent
12b18e5b71
commit
7a94ad0a8c
|
@ -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 = "")
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue