* 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); Dec(I);
If SysSetVideoMode then If SysSetVideoMode then
begin begin
If (I<SysVideoModeCount-1) then If (I<SysVideoModeCount-1) then
DoSetVideoMode(I) DoSetVideoMode(I)
else else
SetVideo8x8; SetVideo8x8;
ScreenWidth:=SysVMD[I].Col; ScreenWidth:=SysVMD[I].Col;
ScreenHeight:=SysVMD[I].Row; ScreenHeight:=SysVMD[I].Row;
ScreenColor:=SysVMD[I].Color; ScreenColor:=SysVMD[I].Color;
DoCustomMouse(false); DoCustomMouse(false);
end; end;
end; end;