Explorar o código

* fixed indentation in SysSetVideoMode of the go32v2 video unit

git-svn-id: trunk@28787 -
nickysn %!s(int64=11) %!d(string=hai) anos
pai
achega
207efda423
Modificáronse 1 ficheiros con 8 adicións e 8 borrados
  1. 8 8
      packages/rtl-console/src/go32v2/video.pp

+ 8 - 8
packages/rtl-console/src/go32v2/video.pp

@@ -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;