xaudio: Fix a typo in xa_stop

Pretty sure we should set the pause var to true on stopping.
This commit is contained in:
Lioncash 2014-11-14 22:55:40 -05:00
parent 9428765596
commit 3ad3625271

View File

@ -82,7 +82,7 @@ static ssize_t xa_write(void *data, const void *buf, size_t size)
static bool xa_stop(void *data)
{
xa_t *xa = (xa_t*)data;
xa->is_paused = false;
xa->is_paused = true;
return true;
}