* Reset puse wait state when stopped (tip from paul)

git-svn-id: trunk@18826 -
This commit is contained in:
marc 2009-02-26 22:40:16 +00:00
parent 9d9c9448c5
commit fa88fa1f61

View File

@ -849,7 +849,10 @@ end;
procedure TGDBMIDebugger.DoState(const OldState: TDBGState);
begin
if State in [dsStop, dsError]
then FAsmCache.Clear;
then begin
FAsmCache.Clear;
FPauseWaitState := pwsNone;
end;
inherited DoState(OldState);
end;