Skip to content

Commit fdb6442

Browse files
committed
Properly displaying message for @Cue field in USM (fix #48)
1 parent 11b3f6d commit fdb6442

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/FileTypes/USM.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,9 @@ public Dictionary<string, List<string>> Demux(bool videoExtract, bool audioExtra
184184
}
185185
break;
186186

187+
case 0x40435545: // @CUE - Might be used to play a certain part of the video, but shouldn't be needed anyway (appears in cutscene Cs_Sumeru_AQ30161501_DT)
188+
Console.WriteLine("@CUE field detected in USM, skipping as we don't need it");
189+
break;
187190
default:
188191
Console.WriteLine("Signature {0} unknown, skipping...", info.signature);
189192
break;

0 commit comments

Comments
 (0)