Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/FAudio_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,7 @@ static inline uint32_t GetMask(uint16_t channels)
if (channels == 4) return SPEAKER_QUAD;
if (channels == 5) return SPEAKER_4POINT1;
if (channels == 6) return SPEAKER_5POINT1;
if (channels == 8) return SPEAKER_7POINT1;
if (channels == 8) return SPEAKER_7POINT1_SURROUND;
FAudio_assert(0 && "Unrecognized speaker layout!");
return 0;
}
Expand Down
Loading