Skip to content

Commit

Permalink
Merge pull request #875 from evur/soundstream-buffer
Browse files Browse the repository at this point in the history
Increase soundstream buffer size
  • Loading branch information
RobDangerous committed May 13, 2024
2 parents 370f433 + f49f408 commit ac733f5
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 ac733f5

Please sign in to comment.