diff options
| author | KiritoDv <kiritodev01@gmail.com> | 2025-02-02 23:34:11 -0600 |
|---|---|---|
| committer | KiritoDv <kiritodev01@gmail.com> | 2025-02-02 23:34:11 -0600 |
| commit | 4b00d75517fbb22e08b409a08256f3e09c212c03 (patch) | |
| tree | 49822f8f5353366056636af28f702dcf67994c74 /src/audio | |
| parent | 1f79880fd55564d75d0d5225cd5842261abe37de (diff) | |
First implementation of louist system
Diffstat (limited to 'src/audio')
| -rw-r--r-- | src/audio/audio_synthesis.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/audio/audio_synthesis.c b/src/audio/audio_synthesis.c index 090e5128..f360229a 100644 --- a/src/audio/audio_synthesis.c +++ b/src/audio/audio_synthesis.c @@ -1036,13 +1036,14 @@ Acmd* AudioSynth_ProcessNote(s32 noteIndex, NoteSubEu* noteSub, NoteSynthesisSta goto skip; case CODEC_S16: + flags = A_CONTINUE; skipBytes = 0; size_t bytesToRead; numSamplesProcessed += numSamplesToLoadAdj; dmemUncompressedAddrOffset1 = numSamplesToLoadAdj; if (((synthState->samplePosInt * 2) + (numSamplesToLoadAdj)*SAMPLE_SIZE) < bookSample->size) { - bytesToRead = (numSamplesToLoadAdj)*SAMPLE_SIZE; + bytesToRead = (numSamplesToLoadAdj) * SAMPLE_SIZE; } else { bytesToRead = bookSample->size - (synthState->samplePosInt * 2); } |
