Browse Source

* fixed indentation in SysSetVideoMode of the go32v2 video unit

git-svn-id: trunk@28787 -
nickysn 10 năm trước cách đây
mục cha
commit
207efda423
1 tập tin đã thay đổi với 8 bổ sung8 xóa
  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;