mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 21:17:45 +00:00
LibAudio: Fix uncommon 16-bit block size symbol
This was a silly typo :^)
This commit is contained in:
parent
1cd3826ad6
commit
271bfa63f3
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ enum class BlockSizeCategory : u8 {
|
|||
S4608 = 0b0101,
|
||||
// Actual size is stored later on.
|
||||
Uncommon8Bits = 0b0110,
|
||||
Uncommon16Bits = 0b1111,
|
||||
Uncommon16Bits = 0b0111,
|
||||
// Formula 2^x.
|
||||
S256 = 0b1000,
|
||||
S512 = 0b1001,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue