- assigned_to: nobody --> niki2k
In the INI file, when using a different Upload amount
than a Download amount (KB), the graph does not scale
properly. Only the Download amount is used to scale
both graphs, as in, the upload graph uses the Download
amount to scale the upload graph in addition to scaling
the download graph.
I downloaded the code to look at it. I think its in here in
AnalyseData():
###
if (a<3)
{
Download.average[i,a]+=Download.coords
[127,i,a]=(88*(int)result/Download.i_dl);
Download.coords[127,i,a+2]=Download.average
[i,a]/127;
}
###
I only see "i_dl" mentioned when calculating how tall to
make the graph. I think this is the problem. Maybe
another "if" in here to divide by "i_ul" if the graph being
made is the upload one. If its not here, its definately
somewhere, "i_ul" is declared and never used.
Great set of apps guys!