Now shows SOMETHING if any call was made during an hour slot on the usage graph

This commit is contained in:
mysticbbs 2012-09-25 02:04:30 -04:00
parent ecaa0883d2
commit 9f318b735c
1 changed files with 3 additions and 0 deletions

View File

@ -611,6 +611,9 @@ Var
If Stats.Hourly[Count] > 0 Then Begin
Temp := Stats.Hourly[Count] / Highest * 100;
Stats.Hourly[Count] := Trunc(Temp) DIV 20;
If (Stats.Hourly[Count] = 0) And (Temp > 0) Then
Stats.Hourly[Count] := 1; // Make it show at LEAST something
End;
Close (HistFile);