mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[SimpleSort] Bring stability improvements to SimpleSort and the classes/methods it relies on
This commit is contained in:
@@ -406,7 +406,6 @@ namespace SabreTools.Helper
|
||||
|
||||
#endregion
|
||||
|
||||
// HERE BE DRAGONS
|
||||
#region Find all files to rebuild and bucket by game
|
||||
|
||||
// Create a dictionary of from/to Rom mappings
|
||||
|
||||
@@ -629,7 +629,7 @@ namespace SabreTools.Helper
|
||||
_zipFileInfo = new FileInfo(filename);
|
||||
|
||||
// Now try to open the file
|
||||
_zipstream = File.OpenWrite(filename);
|
||||
_zipstream = File.Open(filename, FileMode.OpenOrCreate, FileAccess.ReadWrite);
|
||||
ZipOpen = ZipOpenType.OpenWrite;
|
||||
return ZipReturn.ZipGood;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user