Skip to content

Commit f4b3214

Browse files
BabyhamstaBabyhamsta
authored andcommitted
Fixed an issue where FOV didn't load due to some previous code that wasn't cleaned up during testing.
1 parent 122eb68 commit f4b3214

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

AimmyWPF/MainWindow.xaml.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ private enum MenuPosition
6363
{ "FOV_Size", 640 },
6464
{ "Mouse_Sens", 0.80 },
6565
{ "Mouse_Jitter", 4 },
66-
{ "Prediction_Sens", 0.1 },
6766
{ "Y_Offset", 0 },
6867
{ "X_Offset", 0 },
6968
{ "Trigger_Delay", 0.1 },
@@ -771,8 +770,6 @@ private async Task LoadConfigAsync(string path)
771770
// We'll attempt to update the AI Settings but it may not be loaded yet.
772771
try
773772
{
774-
predictionManager.PredictionSens = aimmySettings["Prediction_Sens"];
775-
776773
int fovSize = (int)aimmySettings["FOV_Size"];
777774
FOVOverlay.FovSize = fovSize;
778775
AwfulPropertyChanger.PostNewFOVSize();

AimmyWPF/PredictionManager.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ public struct Detection
1414

1515
KalmanFilter2D kalmanFilter;
1616
private DateTime lastUpdateTime;
17-
private const double ResetThreshold = 1;
18-
public double PredictionSens = 0.01;
1917

2018
public PredictionManager()
2119
{

0 commit comments

Comments
 (0)