mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-10 07:04:36 +00:00
Small fix for dds extension being kept on batch export
This commit is contained in:
parent
e08f8574ab
commit
994d5759b3
1 changed files with 1 additions and 1 deletions
|
@ -499,7 +499,7 @@ namespace Toolbox.Library
|
||||||
|
|
||||||
public void Load(BinaryDataReader reader)
|
public void Load(BinaryDataReader reader)
|
||||||
{
|
{
|
||||||
Text = FileName;
|
Text = Path.GetFileNameWithoutExtension(FileName);
|
||||||
|
|
||||||
reader.Seek(0);
|
reader.Seek(0);
|
||||||
string Magic = reader.ReadString(4);
|
string Magic = reader.ReadString(4);
|
||||||
|
|
Loading…
Reference in a new issue