You've already forked lazarus-ccr
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:
@ -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;
|
||||
|
Reference in New Issue
Block a user