fix IncHour - txh Jura from freepascal.ru

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2272 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
alexs75
2012-01-29 04:46:28 +00:00
parent bd2c3feb49
commit 644473ec2d

View File

@ -177,7 +177,11 @@ var
procedure IncHour;
begin
H1:=H1+AValue;
if H1<0 then H1:=0;
if H1>23 then
H1:=0
else
if H1<0 then
H1:=23;
end;
procedure IncMin;