Some fixes regarding Forward-Slashes in ModNames.

This commit is contained in:
Ottermandias 2021-07-24 20:32:51 +02:00
parent 03a722b92f
commit d6bb45f33c
8 changed files with 72 additions and 21 deletions

View file

@ -25,7 +25,7 @@ namespace Penumbra.Mod
Meta = meta;
Resources = resources;
MetaFile = MetaFileInfo( basePath );
SortOrder = meta.Name;
SortOrder = meta.Name.Replace( '/', '\\' );
ComputeChangedItems();
}