Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeugma440 committed Nov 2, 2024
1 parent 0930ad3 commit 638922d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ATL/Entities/AudioFormat.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public void ComputeId()
ID = combineIds((short)Math.Min(short.MaxValue, ContainerId), (short)Math.Min(short.MaxValue, DataFormat.ID));
}

private int combineIds(int id1, int id2)
private static int combineIds(int id1, int id2)
{
return (id1 << 16) + id2;
}
Expand Down

0 comments on commit 638922d

Please sign in to comment.