* fixed ClearExceptions (clear pending exceptions instead of all config

bits)

git-svn-id: trunk@11244 -
This commit is contained in:
Jonas Maebe 2008-06-18 18:51:09 +00:00
parent 1150f7e9dc
commit 65aa64d4ed
2 changed files with 2 additions and 2 deletions

View File

@ -117,6 +117,6 @@ end;
procedure ClearExceptions(RaisePending: Boolean = true);
begin
{ RaisePending has no effect on PPC, always raises them at the correct location }
setFPSCR(getFPSCR and (not AllConfigBits));
setFPSCR(getFPSCR and (not ExceptionsPendingMask));
end;

View File

@ -117,6 +117,6 @@ end;
procedure ClearExceptions(RaisePending: Boolean = true);
begin
{ RaisePending has no effect on PPC, always raises them at the correct location }
setFPSCR(getFPSCR and (not AllConfigBits));
setFPSCR(getFPSCR and (not ExceptionsPendingMask));
end;