Skip to content

Commit

Permalink
Properly displaying message for @Cue field in USM (fix #48)
Browse files Browse the repository at this point in the history
  • Loading branch information
ToaHartor committed Oct 24, 2022
1 parent 11b3f6d commit fdb6442
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/FileTypes/USM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,9 @@ public Dictionary<string, List<string>> Demux(bool videoExtract, bool audioExtra
}
break;

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)
Console.WriteLine("@CUE field detected in USM, skipping as we don't need it");
break;
default:
Console.WriteLine("Signature {0} unknown, skipping...", info.signature);
break;
Expand Down

0 comments on commit fdb6442

Please sign in to comment.