mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-06 10:07:19 +01:00
GdbmiDebugger: fix marking register as modified
git-svn-id: trunk@63912 -
This commit is contained in:
parent
86323528a8
commit
0b1a412658
@ -2106,6 +2106,8 @@ begin
|
||||
FRegisters.DataValidity := ddsValid;
|
||||
|
||||
if ChangedRegList <> nil then begin
|
||||
for i := 0 to FRegisters.Count - 1 do
|
||||
FRegisters[i].Modified := False;
|
||||
for i := 0 to ChangedRegList.Count - 1 do begin
|
||||
idx := StrToIntDef(Unquote(ChangedRegList.GetString(i)), -1);
|
||||
if (idx < 0) or (idx > High(FGDBMIRegSupplier.FRegNamesCache)) then Continue;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user