We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ada4c99 commit 7ac0eccCopy full SHA for 7ac0ecc
Sonic '06 Mod Manager/ModManager.cs
@@ -3114,6 +3114,12 @@ private void PatchARC(string arc, string output)
3114
convertDialog.Location = new System.Drawing.Point(parentLeft, parentTop);
3115
convertDialog.Show();
3116
3117
+ if (File.Exists($"{s06Path}\\xenon\\archives\\cache.arc_orig"))
3118
+ {
3119
+ File.Delete($"{s06Path}\\xenon\\archives\\cache.arc");
3120
+ File.Move($"{s06Path}\\xenon\\archives\\cache.arc_orig", $"{s06Path}\\xenon\\archives\\cache.arc");
3121
+ }
3122
+
3123
string tempPath = $"{applicationData}\\Temp\\{Path.GetRandomFileName()}";
3124
var tempData = new DirectoryInfo(tempPath);
3125
Directory.CreateDirectory(tempPath);
0 commit comments