Debugger: Hex Editor - Display dots for values above $7E when no TBL file is used

This commit is contained in:
Sour 2019-05-01 22:40:41 -04:00
parent 3aab451076
commit 006290a95b

View file

@ -40,7 +40,7 @@ namespace Be.Windows.Forms
{
keyLength = 1;
byte b = (byte)value;
return new string(b > 0x1F && !(b > 0x7E && b < 0xA0) ? (char)b : '.', 1);
return new string((b > 0x1F && b <= 0x7E) ? (char)b : '.', 1);
}
/// <summary>