Skip to content

Commit

Permalink
V. 1.14.5
Browse files Browse the repository at this point in the history
Don't kill me for making another update within minutes
  • Loading branch information
ComputerElite authored Mar 1, 2021
1 parent afe769c commit d0578b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion C#/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public partial class MainWindow : Window
{
int MajorV = 1;
int MinorV = 14;
int PatchV = 4;
int PatchV = 5;
Boolean Preview = false;
public static bool log = false;

Expand Down
3 changes: 2 additions & 1 deletion C#/Songs.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -721,6 +721,8 @@ public String CheckSong(String folder)
String entry = folder;
String dat = entry + "\\Info.dat";

if (!Directory.Exists(entry)) return "Error";

//get Info.dat
MoveOutOfFolder(entry, found);
if (!File.Exists(entry + "\\Info.dat") || !File.Exists(entry + "\\info.dat"))
Expand Down Expand Up @@ -862,7 +864,6 @@ public String CheckSong(String folder)

public void MoveOutOfFolder(String FolderToMoveAll, ArrayList found)
{
if (!Directory.Exists(FolderToMoveAll)) return;
foreach (String folder in Directory.GetDirectories(FolderToMoveAll))
{
if (found.Count == 0)
Expand Down

0 comments on commit d0578b9

Please sign in to comment.