Skip to content

Commit 3aab773

Browse files
committed
trying to avoid more encoding problems
1 parent 32267fa commit 3aab773

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Assets/DebugOverlay/Console.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,8 @@ public void _Write(char[] buf, int length)
259259
NewLine();
260260
continue;
261261
}
262-
// Parse color markup of the form AF7 -> color(0xAA, 0xFF, 0x77)
263-
if (buf[i] == '' && i < length - 3)
262+
// Parse color markup of the form ^AF7 -> color(0xAA, 0xFF, 0x77)
263+
if (buf[i] == '^' && i < length - 3)
264264
{
265265
UInt32 res = 0;
266266
for (var j = i + 1; j < i + 4; j++)

Assets/Game/Game.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public void Init()
4646
m_Stats = new Stats();
4747
m_Stats.Init();
4848

49-
Game.console.Write("FFFGame initializedF44.4F4.44F.\n");
49+
Game.console.Write("^FFFGame initialized^F44.^4F4.^44F.\n");
5050
}
5151

5252
public void Shutdown()

0 commit comments

Comments
 (0)