# | Line 310 | Line 310 | begin | |
---|---|---|
310 | str := ''; | |
311 | if hex.SelCount = 0 then | |
312 | begin | |
313 | < | while (hex.Data[hex.SelStart + j] > 0) and ((hex.SelStart + j) < hex.DataSize) do |
313 | > | while (hex.SelStart + j) < hex.DataSize do |
314 | begin | |
315 | + | if hex.Data[hex.SelStart + j] = 0 then |
316 | + | Break; |
317 | if hex.Data[hex.selstart + j] >= 32 then | |
318 | str := str + Char(hex.Data[hex.SelStart + j]) | |
319 | else |
– | Removed lines |
+ | Added lines |
< | Changed lines (old) |
> | Changed lines (new) |