* Fix DEBUG go32v2 compilation error

git-svn-id: trunk@16356 -
This commit is contained in:
pierre 2010-11-17 16:14:08 +00:00
parent 74e1e4c7ba
commit 969c81b60f

View File

@ -582,7 +582,7 @@ begin
if Force or MustUpdate then
begin
PrevColor:=GetColor;
PrevBkColor:=GetBkColor;
PrevBkColor:=GetBkColor{$ifdef FPC}(){$endif};
for y:=0 to ScreenHeight-1 do
for x:=0 to Screenwidth-1 do
@ -617,7 +617,7 @@ begin
move(videobuf^,oldvideobuf^,
VideoBufSize);
SetColor(PrevColor);
SetBkColor(GetBkColor);
SetBkColor(GetBkColor{$ifdef FPC}(){$endif});
end;
DrawTextBackground:=StoreDrawTextBackground;
{$endif TESTGRAPHIC}