LZSS : Remove extension check to fix MM3D loading
This commit is contained in:
parent
080024fc5c
commit
86cd6c78ab
@ -22,8 +22,7 @@ namespace Toolbox.Library
|
|||||||
{
|
{
|
||||||
using (var reader = new FileReader(stream, true))
|
using (var reader = new FileReader(stream, true))
|
||||||
{
|
{
|
||||||
hasMagic = reader.CheckSignature(4, "LzS\x01");
|
return reader.CheckSignature(4, "LzS\x01");
|
||||||
return hasMagic || Utils.GetExtension(fileName) == ".lzs";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user