Skip to content

Commit 59250bd

Browse files
committed
audio_render: code clean up
1 parent a762156 commit 59250bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main/src/user/audio_render.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ void render_sample_block(short *sample_buff_ch0, short *sample_buff_ch1, int num
2525
}
2626

2727
size_t bytes_written = 0;
28-
for (int i = 0; i < num_samples; i++) {
28+
for (int i=0; i<num_samples; i++) {
2929
/* low - high / low - high */
3030
const char samp32[4] = {ptr_l[0], ptr_l[1], ptr_r[0], ptr_r[1]}; // ESP32 CPU is little-endian
3131

0 commit comments

Comments
 (0)