mirror of
https://github.com/fadden/6502bench.git
synced 2024-11-29 10:50:28 +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:
parent
18994ef772
commit
f307ffe8c0
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user