Debugger: Hex Editor - Display dots for values above $7E when no TBL file is used
This commit is contained in:
parent
3aab451076
commit
006290a95b
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue