Gold shows in the credit box and credits in gold box. Heres the fix.
Code:
totalGold = new MirLabel
{
Size = new Size(100, 20),
DrawFormat = TextFormatFlags.RightToLeft | TextFormatFlags.Right,
Location = new Point(5, 449),
Parent = this,
NotControl = true,
Font = new Font(Settings.FontName, 8F)
};
totalCredits = new MirLabel
{
Size = new Size(100, 20),
DrawFormat = TextFormatFlags.RightToLeft | TextFormatFlags.Right,
Location = new Point(123, 449),
Parent = this,
NotControl = true,
Font = new Font(Settings.FontName, 8F),
};
