mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-07 04:18:38 +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
|
||||
{
|
||||
LbpFileType.MotionRecording => true,
|
||||
LbpFileType.StreamingChunk => true,
|
||||
LbpFileType.FileArchive => false,
|
||||
LbpFileType.CrossLevel => true,
|
||||
LbpFileType.Painting => true,
|
||||
|
|
|
@ -50,6 +50,7 @@ public partial class FileHelper
|
|||
"ADSb" => LbpFileType.Adventure,
|
||||
"PLNb" => LbpFileType.Plan,
|
||||
"QSTb" => LbpFileType.Quest,
|
||||
"CHKb" => LbpFileType.StreamingChunk,
|
||||
_ => readAlternateHeader(reader),
|
||||
};
|
||||
}
|
||||
|
|
|
@ -15,5 +15,6 @@ public enum LbpFileType
|
|||
Jpeg, // JFIF / FIF, used in sticker switches,
|
||||
Png, // used in LBP Vita
|
||||
Quest, // A LBP3 quest, used in the organizertron
|
||||
StreamingChunk, // used in LBP3 dynamic thermo levels
|
||||
Unknown,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue