File tree Expand file tree Collapse file tree 2 files changed +0
-5
lines changed
Expand file tree Collapse file tree 2 files changed +0
-5
lines changed Original file line number Diff line number Diff 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 ( ) ;
Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments