Skip to content

Commit

Permalink
Fix BF naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Meloman19 committed Oct 6, 2024
1 parent 31696cf commit 08e8fe1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<RepositoryUrl>https://github.com/Meloman19/PersonaEditor</RepositoryUrl>
<RepositoryType>git</RepositoryType>

<AssemblyVersion>1.6.5.0</AssemblyVersion>
<FileVersion>1.6.5.0</FileVersion>
<Version>1.6.5.0</Version>
<ApplicationVersion>1.6.5.0</ApplicationVersion>
<AssemblyVersion>1.6.6.0</AssemblyVersion>
<FileVersion>1.6.6.0</FileVersion>
<Version>1.6.6.0</Version>
<ApplicationVersion>1.6.6.0</ApplicationVersion>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion PersonaEditorLib/FileContainer/BF.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private void SetName(string name)
if (fileType == typeof(DAT))
a.Name = name.Substring(0, name.Length - ext.Length) + "(" + ((int)a.Tag).ToString().PadLeft(2, '0') + ").DAT";
else
a.Name = name.Substring(0, name.Length - ext.Length) + "." + fileType.ToString();
a.Name = name.Substring(0, name.Length - ext.Length) + GameFormatHelper.GetDefaultExtension(fileType);
}
}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

* Container: BIN (BIN, PAK, PAC, CPK (FES cut-ins format), P00, ARC); PM1; BF; BVP; TBL; FTD (FTD, CTD, TTD)
* Graphic: FNT; SPR; TMX; SPD; DDS
* Text: BMD (BMD, MSG); PTP
* Text: BMD (BMD, MSG);

0 comments on commit 08e8fe1

Please sign in to comment.