diff --git a/BizHawk.Client.Common/lua/LuaFileList.cs b/BizHawk.Client.Common/lua/LuaFileList.cs
index 7ca4c9253e..17eef4d737 100644
--- a/BizHawk.Client.Common/lua/LuaFileList.cs
+++ b/BizHawk.Client.Common/lua/LuaFileList.cs
@@ -138,8 +138,8 @@ namespace BizHawk.Client.Common
sb
.Append(file.Enabled ? "1" : "0")
.Append(' ')
- .Append(PathManager.MakeRelativeTo(PathManager.MakeAbsolutePath(file.Path, "")
- , Path.GetDirectoryName(path)))
+ .Append(PathManager.MakeRelativeTo(PathManager.MakeAbsolutePath(file.Path, ""),
+ Path.GetDirectoryName(path)))
.AppendLine();
}
}
diff --git a/BizHawk.Client.EmuHawk/MainForm.Events.cs b/BizHawk.Client.EmuHawk/MainForm.Events.cs
index 3728003d45..d67d0666f3 100644
--- a/BizHawk.Client.EmuHawk/MainForm.Events.cs
+++ b/BizHawk.Client.EmuHawk/MainForm.Events.cs
@@ -2129,8 +2129,8 @@ namespace BizHawk.Client.EmuHawk
var message =
$"Invalid file format. Reason: {ex.Message} \nForce transfer? This may cause the calculator to crash.";
- if (MessageBox.Show(message, "Upload Failed", MessageBoxButtons.YesNoCancel
- , MessageBoxIcon.Question) == DialogResult.Yes)
+ if (MessageBox.Show(message, "Upload Failed", MessageBoxButtons.YesNoCancel,
+ MessageBoxIcon.Question) == DialogResult.Yes)
{
ti83.LinkPort.SendFileToCalc(File.OpenRead(ofd.FileName), false);
}
diff --git a/Common.ruleset b/Common.ruleset
index 18fea3c02d..2f3bf00826 100644
--- a/Common.ruleset
+++ b/Common.ruleset
@@ -92,9 +92,6 @@
-
-
-