From 9f318b735c3daab8821b8499dbdf79831d52aa79 Mon Sep 17 00:00:00 2001 From: mysticbbs Date: Tue, 25 Sep 2012 02:04:30 -0400 Subject: [PATCH] Now shows SOMETHING if any call was made during an hour slot on the usage graph --- mystic/nodespy.pas | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mystic/nodespy.pas b/mystic/nodespy.pas index 0e15e6e..6bb5733 100644 --- a/mystic/nodespy.pas +++ b/mystic/nodespy.pas @@ -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);