Fix unescaped ampersands in the Recent ROM menu.

This commit is contained in:
J.D. Purcell 2019-10-13 15:42:38 -04:00
parent d3b62009e6
commit d95340182e
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ namespace BizHawk.Client.EmuHawk.ToolExtensions
}
//TODO - do TSMI and TSDD need disposing? yuck
var item = new ToolStripMenuItem { Text = caption };
var item = new ToolStripMenuItem { Text = caption.Replace("&", "&&") };
items.Add(item);
item.Click += (o, ev) =>