1
0
mirror of synced 2025-02-25 22:38:07 +01:00

Fix folder path for batch bflim exporting

This commit is contained in:
KillzXGaming 2019-06-25 20:08:16 -04:00
parent 53b15c1f7b
commit 5e0790ab8e
5 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -229,7 +229,7 @@ namespace FirstPlugin
}
if (FileFormat is BFLIM)
{
((BFLIM)FileFormat).Export(Folder + FileFormat.FileName + Extension);
((BFLIM)FileFormat).Export(Path.Combine(Folder, $"{FileFormat.FileName}{Extension}"));
}
FileFormat.Unload();