Browse Source

* rtl-console: fix ; in the previous commit

Karoly Balogh 3 years ago
parent
commit
5a84342348
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/rtl-console/src/inc/video.inc

+ 1 - 1
packages/rtl-console/src/inc/video.inc

@@ -191,7 +191,7 @@ Procedure UpdateScreenArea (const X1, Y1, X2, Y2: Word; Force: Boolean);
 begin
 begin
   if (LockUpdateScreen<=0) then
   if (LockUpdateScreen<=0) then
     if Assigned(CurrentVideoDriver.UpdateScreenArea) then
     if Assigned(CurrentVideoDriver.UpdateScreenArea) then
-      CurrentVideoDriver.UpdateScreenArea(X1,Y1,X2,Y2,Force);
+      CurrentVideoDriver.UpdateScreenArea(X1,Y1,X2,Y2,Force)
     else
     else
       UpdateScreen(Force);
       UpdateScreen(Force);
 end;
 end;