Formatting (White space)

This commit is contained in:
HeshamTB 2018-12-21 21:57:56 +03:00
parent 2d5771beb8
commit 035d9979d1

View File

@ -97,7 +97,7 @@ namespace OWTrack
//Searches all drives (too long) //Searches all drives (too long)
//foreach (var drive in driveInfo) //foreach (var drive in driveInfo)
//{ //{
//paths.AddRange(GetFiles(drive.ToString(),"Overwatch.exe")); //paths.AddRange(GetFiles(drive.ToString(),"Overwatch.exe"));
//} //}
paths.AddRange(GetFiles(Paths.ProgramFiles.C, "Overwatch.exe")); paths.AddRange(GetFiles(Paths.ProgramFiles.C, "Overwatch.exe"));
paths.AddRange(GetFiles(Paths.ProgramFiles.D, "Overwatch.exe")); paths.AddRange(GetFiles(Paths.ProgramFiles.D, "Overwatch.exe"));
@ -119,7 +119,7 @@ namespace OWTrack
} }
catch (Exception e) catch (Exception e)
{ {
MessageBox.Show(e.Message); MessageBox.Show(e.Message);
return false; return false;
} }
} }
@ -151,13 +151,13 @@ namespace OWTrack
class Settings class Settings
{ {
public bool TrackSR, TrackOW = true; public bool TrackSR, TrackOW = true;
public string GamePath = ""; public string GamePath = "";
/// <summary> /// <summary>
/// Reset All values to defult /// Reset All values to defult
/// </summary> /// </summary>
public void Reset() public void Reset()
{ {
TrackOW = true; TrackOW = true;
TrackSR = true; TrackSR = true;
@ -170,7 +170,7 @@ namespace OWTrack
public int TotalMatches; public int TotalMatches;
public int SkillChange; public int SkillChange;
public int StartSR; public int StartSR;
List<Match> Matches = new List<Math>(); List<Match> Matches = new List<Match>();
DateTime date; DateTime date;
/// <summary> /// <summary>