Fix libxmp playback

Fixes crashing when the int16_buffer is smaller than the desired len.
Particularly, I was seeing the int16_buffer with a size of 0.
This commit is contained in:
Andrew Rabert 2025-01-11 00:26:08 -05:00 committed by Christoph Oelckers
parent 7e369774d5
commit f6facdaa68

View file

@ -126,7 +126,7 @@ bool XMPSong::SetSubsong(int subsong)
bool XMPSong::GetData(void *buffer, size_t len)
{
if ((len / 4) < int16_buffer.size())
if ((len / 4) > int16_buffer.size())
int16_buffer.resize(len / 4);
int ret = xmp_play_buffer(context, (void*)int16_buffer.data(), len / 2, m_Looping? INT_MAX : 0);