Skip to content

Commit 3e099fe

Browse files
Don't skip CI, my son.
1 parent 291cff2 commit 3e099fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AudioOutputI2S.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ bool AudioOutputI2S::ConsumeSample(int16_t sample[2]) {
273273
#ifdef ARDUINO_ARCH_RP2040
274274
uint16_t AudioOutputI2S::ConsumeSamples(int16_t *samples, uint16_t count) {
275275
// We special case the normal stereo, no gain case. OTW just use the regular full-fat path
276-
if (this->mono || (gainF2P6 != 1<<6)) {
276+
if (this->mono || (gainF2P6 != 1 << 6)) {
277277
return AudioOutput::ConsumeSamples(samples, count);
278278
}
279279
auto ret = i2s.write((const uint8_t *)samples, count * 4);

0 commit comments

Comments
 (0)