Skip to content

Commit

Permalink
Increased soundstream buffer size
Browse files Browse the repository at this point in the history
  • Loading branch information
evur committed May 13, 2024
1 parent 370f433 commit f49f408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/kinc/audio1/soundstream.c.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

static kinc_a1_sound_stream_t streams[256];
static int nextStream = 0;
static uint8_t buffer[1024 * 10];
static uint8_t buffer[1024 * 1024 * 10];
static int bufferIndex;

kinc_a1_sound_stream_t *kinc_a1_sound_stream_create(const char *filename, bool looping) {
Expand Down

0 comments on commit f49f408

Please sign in to comment.