Merge pull request #3019 from sipa/fugbix
Bugfix: nHeightLast instead of nHeightFirst
This commit is contained in:
commit
b4355ccaf7
1 changed files with 1 additions and 1 deletions
|
@ -655,7 +655,7 @@ public:
|
|||
if (nBlocks==0 || nTimeFirst > nTimeIn)
|
||||
nTimeFirst = nTimeIn;
|
||||
nBlocks++;
|
||||
if (nHeightIn > nHeightFirst)
|
||||
if (nHeightIn > nHeightLast)
|
||||
nHeightLast = nHeightIn;
|
||||
if (nTimeIn > nTimeLast)
|
||||
nTimeLast = nTimeIn;
|
||||
|
|
Loading…
Reference in a new issue