Skip to content

Commit

Permalink
fix wad mounting
Browse files Browse the repository at this point in the history
  • Loading branch information
Crauzer committed Jun 2, 2023
1 parent a71e561 commit b778179
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Obsidian/Data/Wad/WadTreeModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public WadTreeModel(HashtableService hashtable, Config config, IEnumerable<strin
this.Hashtable = hashtable;
this.Config = config;

Parallel.ForEach(wadFiles, wadFilePath =>
foreach(string wadFilePath in wadFiles)
{
try
{
Expand All @@ -59,7 +59,7 @@ public WadTreeModel(HashtableService hashtable, Config config, IEnumerable<strin
{
Log.Error(exception, "Failed to mount Wad file: {WadFile}", wadFilePath);
}
});
}

SortItems();
}
Expand Down

0 comments on commit b778179

Please sign in to comment.