Fix missing variable command parameter data in DrawQueue.

This commit is contained in:
H. Utku Maden 2025-01-20 23:14:15 +03:00
parent 78f06a2359
commit 57620f5d5c

@ -106,6 +106,7 @@ namespace Dashboard.Drawing
int sz = ToVlq(cmdIndex, cmd); int sz = ToVlq(cmdIndex, cmd);
sz += ToVlq(param.Length, cmd[sz..]); sz += ToVlq(param.Length, cmd[sz..]);
_commandStream.Write(cmd[..sz]); _commandStream.Write(cmd[..sz]);
_commandStream.Write(param);
} }
else else
{ {