mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 16:09:26 +02:00
Fix compilation for EMX
git-svn-id: trunk@37016 -
This commit is contained in:
parent
961bd0b56f
commit
f395d83db5
@ -367,7 +367,7 @@ begin
|
||||
gotoXY(1,1);
|
||||
end;
|
||||
|
||||
procedure gotoXY(x,y:byte);
|
||||
procedure gotoXY(x,y:tcrtcoord);
|
||||
|
||||
{Positions the cursor on (x,y) relative to the window origin.}
|
||||
|
||||
@ -383,7 +383,7 @@ begin
|
||||
setcursor(y+hi(windmin)-1,x+lo(windmin)-1);
|
||||
end;
|
||||
|
||||
function whereX:byte;
|
||||
function whereX:tcrtcoord;
|
||||
|
||||
{Returns the x position of the cursor.}
|
||||
|
||||
@ -394,7 +394,7 @@ begin
|
||||
whereX:=x-lo(windmin)+1;
|
||||
end;
|
||||
|
||||
function whereY:byte;
|
||||
function whereY:tcrtcoord;
|
||||
|
||||
{Returns the y position of the cursor.}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user