NES Graphics Settings bugfix

This commit is contained in:
taotao54321 2012-03-11 07:02:10 +00:00
parent 30b0dc6780
commit 05321d19bc
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ namespace BizHawk.MultiClient
private void SetColorBox()
{
int color = BGColorDialog.Color.ToArgb();
BackGroundColorNumber.Text = String.Format("#{0:X8}", color).Substring(2,6);
BackGroundColorNumber.Text = String.Format("{0:X8}", color).Substring(2,6);
BackgroundColorPanel.BackColor = BGColorDialog.Color;
}