mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Minor fixes to DatToMiss
This commit is contained in:
@@ -160,8 +160,8 @@ namespace SabreTools.Helper
|
||||
}
|
||||
|
||||
// Normalize the extensions
|
||||
addext = (addext.StartsWith(".") ? addext : "." + addext);
|
||||
repext = (repext.StartsWith(".") ? repext : "." + repext);
|
||||
addext = (addext == "" || addext.StartsWith(".") ? addext : "." + addext);
|
||||
repext = (repext == "" || repext.StartsWith(".") ? repext : "." + repext);
|
||||
|
||||
logger.Log("Opening file for writing: " + outdir + textfile);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user