mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-10 05:48:39 +00:00
Allow streaming chunk filetype in mod filter (#745)
This commit is contained in:
parent
fc522b33a4
commit
48c3384e0c
3 changed files with 3 additions and 0 deletions
|
@ -30,6 +30,7 @@ public static partial class FileHelper
|
||||||
return file.FileType switch
|
return file.FileType switch
|
||||||
{
|
{
|
||||||
LbpFileType.MotionRecording => true,
|
LbpFileType.MotionRecording => true,
|
||||||
|
LbpFileType.StreamingChunk => true,
|
||||||
LbpFileType.FileArchive => false,
|
LbpFileType.FileArchive => false,
|
||||||
LbpFileType.CrossLevel => true,
|
LbpFileType.CrossLevel => true,
|
||||||
LbpFileType.Painting => true,
|
LbpFileType.Painting => true,
|
||||||
|
|
|
@ -50,6 +50,7 @@ public partial class FileHelper
|
||||||
"ADSb" => LbpFileType.Adventure,
|
"ADSb" => LbpFileType.Adventure,
|
||||||
"PLNb" => LbpFileType.Plan,
|
"PLNb" => LbpFileType.Plan,
|
||||||
"QSTb" => LbpFileType.Quest,
|
"QSTb" => LbpFileType.Quest,
|
||||||
|
"CHKb" => LbpFileType.StreamingChunk,
|
||||||
_ => readAlternateHeader(reader),
|
_ => readAlternateHeader(reader),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,5 +15,6 @@ public enum LbpFileType
|
||||||
Jpeg, // JFIF / FIF, used in sticker switches,
|
Jpeg, // JFIF / FIF, used in sticker switches,
|
||||||
Png, // used in LBP Vita
|
Png, // used in LBP Vita
|
||||||
Quest, // A LBP3 quest, used in the organizertron
|
Quest, // A LBP3 quest, used in the organizertron
|
||||||
|
StreamingChunk, // used in LBP3 dynamic thermo levels
|
||||||
Unknown,
|
Unknown,
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue