* fixed dos.getftime returning a wrong value for 'time' on i8086-msdos

git-svn-id: trunk@27159 -
This commit is contained in:
nickysn 2014-03-16 15:22:49 +00:00
parent ee34761646
commit 238c4f91d8

View File

@ -874,7 +874,7 @@ begin
dosregs.ax:=$5700;
msdos(dosregs);
loaddoserror;
time:=(dosregs.dx shl 16)+dosregs.cx;
time:=(longint(dosregs.dx) shl 16)+dosregs.cx;
end;