Skip to content
This repository was archived by the owner on Jul 9, 2024. It is now read-only.

Commit bb64803

Browse files
committed
Clean up variable name from fix for #6, to match naming convention
1 parent 69c749a commit bb64803

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

DolphinBisectTool/RunBuild.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ public void Run(string title = "")
99
{
1010
using (var runner = new Process())
1111
{
12-
string startingDirectory = Directory.GetCurrentDirectory() +
13-
@"\dolphin\Dolphin-x64\";
14-
runner.StartInfo.WorkingDirectory = startingDirectory;
15-
runner.StartInfo.FileName = startingDirectory + "Dolphin.exe";
12+
string starting_directory = Directory.GetCurrentDirectory() +
13+
@"\dolphin\Dolphin-x64\";
14+
runner.StartInfo.WorkingDirectory = starting_directory;
15+
runner.StartInfo.FileName = starting_directory + "Dolphin.exe";
1616
if (!string.IsNullOrEmpty(title))
1717
runner.StartInfo.Arguments = string.Format("/b /e \"{0}\"", title);
1818
runner.Start();

0 commit comments

Comments
 (0)