Debugger: Fixed memory tools crash when using multi-byte replace rules in TBL files
This commit is contained in:
parent
37904b8679
commit
c901226f8c
1 changed files with 1 additions and 1 deletions
|
@ -2728,7 +2728,7 @@ namespace Be.Windows.Forms
|
|||
|
||||
stringToDisplay += s;
|
||||
|
||||
if(s.Length > 1 || s.Length > 0 && s[0] > 127 || s[0] < 32) {
|
||||
if(s.Length > 1 || (s.Length > 0 && (s[0] > 127 || s[0] < 32))) {
|
||||
//Force draw if we hit a non-ascii character (to avoid minor positioning issues)
|
||||
forceDraw = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue