summaryrefslogtreecommitdiff
path: root/grapher/Models/Charts/ChartState/XYTwoGraphState.cs
diff options
context:
space:
mode:
authora1xd <[email protected]>2020-12-05 01:21:03 -0500
committera1xd <[email protected]>2020-12-05 01:21:03 -0500
commit2c7c24ee1513616dc6260849bf97340d8484b6b4 (patch)
tree2210c90268748f685297313e0541862bf6894aa0 /grapher/Models/Charts/ChartState/XYTwoGraphState.cs
parentadd changes from review (diff)
downloadrawaccel-2c7c24ee1513616dc6260849bf97340d8484b6b4.tar.xz
rawaccel-2c7c24ee1513616dc6260849bf97340d8484b6b4.zip
add more changes from review
improve version error messages revert poll time changes add range validation after text parse
Diffstat (limited to 'grapher/Models/Charts/ChartState/XYTwoGraphState.cs')
-rw-r--r--grapher/Models/Charts/ChartState/XYTwoGraphState.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/grapher/Models/Charts/ChartState/XYTwoGraphState.cs b/grapher/Models/Charts/ChartState/XYTwoGraphState.cs
index 075cc0f..732ea3c 100644
--- a/grapher/Models/Charts/ChartState/XYTwoGraphState.cs
+++ b/grapher/Models/Charts/ChartState/XYTwoGraphState.cs
@@ -33,9 +33,9 @@ namespace grapher.Models.Charts.ChartState
GainChart.ClearSecondDots();
}
- public override void MakeDots(double x, double y, double timeInMsRecip)
+ public override void MakeDots(double x, double y, double timeInMs)
{
- Data.CalculateDotsXY(x, y, timeInMsRecip);
+ Data.CalculateDotsXY(x, y, timeInMs);
}
public override void Bind()