Skip to content

Commit

Permalink
fix(config) : fix crash issue when loading config
Browse files Browse the repository at this point in the history
  • Loading branch information
PierroD committed Jul 30, 2024
1 parent 22e2086 commit ad6abc9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions LINDRA - Market/LINDRA - Market/Views/UC_Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,5 +124,6 @@ private void buttonUpdate_Click(object sender, EventArgs e)
Process.Start($"{Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)}\\MarketUpdater.exe");
Application.Exit();
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,6 @@ private void buttonLoad_Click(object sender, EventArgs e)
FpsSettings.sw_glow = (bool.Parse(ini.IniReadValue("Disable", "NoGlow")));
FpsSettings.sw_bullet = (bool.Parse(ini.IniReadValue("Disable", "NoBullet")));
FpsSettings.sw_camos = (bool.Parse(ini.IniReadValue("Disable", "NoSkins")));
FpsSettings.allies_feed = (Color.FromArgb(int.Parse(ini.IniReadValue("Feed", "Allies"))));
FpsSettings.axis_feed = (Color.FromArgb(int.Parse(ini.IniReadValue("Feed", "Axis"))));
try
{
FpsSettings.bar_fovScale = (int.Parse(ini.IniReadValue("Fov&fps", "FovMinimum")));
Expand Down

0 comments on commit ad6abc9

Please sign in to comment.