1
0
mirror of https://github.com/deavmi/gogga synced 2024-09-21 09:43:45 +02:00

Forgot to append message

This commit is contained in:
Tristan B. Velloza Kildaire 2021-03-20 18:46:51 +02:00
parent 76ce095a66
commit 8cffa843f4

View File

@ -37,6 +37,9 @@ byte[] generateMessage(string message, DebugType debugType)
/* Switch back color */
messageBytes ~= cast(byte[])[27, '[', '3', '9', 'm'];
/* Append message */
messageBytes ~= message;
return messageBytes;
}