There was an error while loading. Please reload this page.
1 parent 32267fa commit 3aab773Copy full SHA for 3aab773
Assets/DebugOverlay/Console.cs
@@ -259,8 +259,8 @@ public void _Write(char[] buf, int length)
259
NewLine();
260
continue;
261
}
262
- // Parse color markup of the form �AF7 -> color(0xAA, 0xFF, 0x77)
263
- if (buf[i] == '�' && i < length - 3)
+ // Parse color markup of the form ^AF7 -> color(0xAA, 0xFF, 0x77)
+ if (buf[i] == '^' && i < length - 3)
264
{
265
UInt32 res = 0;
266
for (var j = i + 1; j < i + 4; j++)
Assets/Game/Game.cs
@@ -46,7 +46,7 @@ public void Init()
46
m_Stats = new Stats();
47
m_Stats.Init();
48
49
- Game.console.Write("�FFFGame initialized�F44.�4F4.�44F.\n");
+ Game.console.Write("^FFFGame initialized^F44.^4F4.^44F.\n");
50
51
52
public void Shutdown()
0 commit comments