mirror of
https://github.com/ZDoom/ZMusic.git
synced 2025-04-05 08:51:29 +00:00
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:
parent
7e369774d5
commit
f6facdaa68
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue