* fixed indentation in SysSetVideoMode of the go32v2 video unit

git-svn-id: trunk@28787 -
This commit is contained in:
nickysn 2014-10-07 23:54:52 +00:00
parent d8a9860e92
commit 207efda423

View File

@ -283,14 +283,14 @@ begin
Dec(I);
If SysSetVideoMode then
begin
If (I<SysVideoModeCount-1) then
DoSetVideoMode(I)
else
SetVideo8x8;
ScreenWidth:=SysVMD[I].Col;
ScreenHeight:=SysVMD[I].Row;
ScreenColor:=SysVMD[I].Color;
DoCustomMouse(false);
If (I<SysVideoModeCount-1) then
DoSetVideoMode(I)
else
SetVideo8x8;
ScreenWidth:=SysVMD[I].Col;
ScreenHeight:=SysVMD[I].Row;
ScreenColor:=SysVMD[I].Color;
DoCustomMouse(false);
end;
end;