1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:37:46 +00:00

LibAudio: Fix uncommon 16-bit block size symbol

This was a silly typo :^)
This commit is contained in:
kleines Filmröllchen 2023-08-22 16:51:05 +02:00 committed by Jelle Raaijmakers
parent 1cd3826ad6
commit 271bfa63f3

View file

@ -106,7 +106,7 @@ enum class BlockSizeCategory : u8 {
S4608 = 0b0101, S4608 = 0b0101,
// Actual size is stored later on. // Actual size is stored later on.
Uncommon8Bits = 0b0110, Uncommon8Bits = 0b0110,
Uncommon16Bits = 0b1111, Uncommon16Bits = 0b0111,
// Formula 2^x. // Formula 2^x.
S256 = 0b1000, S256 = 0b1000,
S512 = 0b1001, S512 = 0b1001,