mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-22 04:23:09 +00:00
LZSS : Remove extension check to fix MM3D loading
This commit is contained in:
parent
080024fc5c
commit
86cd6c78ab
1 changed files with 1 additions and 2 deletions
|
@ -22,8 +22,7 @@ namespace Toolbox.Library
|
|||
{
|
||||
using (var reader = new FileReader(stream, true))
|
||||
{
|
||||
hasMagic = reader.CheckSignature(4, "LzS\x01");
|
||||
return hasMagic || Utils.GetExtension(fileName) == ".lzs";
|
||||
return reader.CheckSignature(4, "LzS\x01");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue