1
0
mirror of https://github.com/fadden/6502bench.git synced 2024-07-04 16:30:01 +00:00

Replace another instance of double-arrow glyph

Change 80da6c replaced \u23e9 (black right-pointing double triangle)
with a downward-pointing triangle, because it didn't render under
Win7 or Linux.  It was also being used in the "info" window.  This
change replaces that occurrence with a right-pointing triangle.
This commit is contained in:
Andy McFadden 2018-10-29 12:58:09 -07:00
parent 18994ef772
commit f307ffe8c0

View File

@ -4409,9 +4409,9 @@ namespace SourceGen.AppForms {
string shortDesc = mOpDesc.GetShortDescription(op.Mnemonic);
if (!string.IsNullOrEmpty(shortDesc)) {
if (op.IsUndocumented) {
sb.Append("\u23e9[*] ");
sb.Append("\u25b6[*] ");
} else {
sb.Append("\u23e9 ");
sb.Append("\u25b6 ");
}
sb.Append(shortDesc);
string addrStr = mOpDesc.GetAddressModeDescription(op.AddrMode);