Skip to content

Commit

Permalink
change layeredFS folder to romfs
Browse files Browse the repository at this point in the history
  • Loading branch information
Reisyukaku committed Nov 28, 2022
1 parent d533161 commit 4dad36e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion GFTool.FilesystemExplorer/FileSystemForm.cs
Expand Up @@ -591,7 +591,7 @@ private void setOutputFolderToolStripMenuItem_Click(object sender, EventArgs e)
{
var fold = new FolderBrowserDialog();
if (fold.ShowDialog() != DialogResult.OK) return;
settings.outputDir = fold.SelectedPath + "\\";
settings.outputDir = fold.SelectedPath + @"\romfs\";
settings.Save();
}
#endregion
Expand Down
2 changes: 1 addition & 1 deletion GFTool.FilesystemExplorer/Settings.cs
Expand Up @@ -6,7 +6,7 @@ public class Settings
{
public string archiveDir { get; set; } = "";
public bool autoloadTrpfd { get; set; } = true;
public string outputDir { get; set; } = "LayeredFS/";
public string outputDir { get; set; } = @"\romfs\";

public void Save()
{
Expand Down

0 comments on commit 4dad36e

Please sign in to comment.