This commit is contained in:
goeiecool9999 2023-12-17 12:28:27 +01:00
parent 57ee2413e7
commit c8b4e48120

View File

@ -21,10 +21,10 @@ sint16* BootSoundReader::getSamples()
if (read % sizeof(sint16be) != 0) if (read % sizeof(sint16be) != 0)
cemu_assert_suspicious(); cemu_assert_suspicious();
std::copy_n(bufferBE.begin(), read / sizeof(sint16be), buffer.begin() + totalRead); std::copy_n(bufferBE.begin(), read / sizeof(sint16be), buffer.begin() + (totalRead / sizeof(sint16)));
totalRead += read; totalRead += read;
if (totalRead < blockSize) if (totalRead < blockSize)
fsc_setFileSeek(bootsndFile, loopPoint * 4); fsc_setFileSeek(bootsndFile, 8 + loopPoint * 4);
} }
return buffer.data(); return buffer.data();