xaudio: Fix a typo in xa_stop
Pretty sure we should set the pause var to true on stopping.
This commit is contained in:
parent
9428765596
commit
3ad3625271
|
@ -82,7 +82,7 @@ static ssize_t xa_write(void *data, const void *buf, size_t size)
|
||||||
static bool xa_stop(void *data)
|
static bool xa_stop(void *data)
|
||||||
{
|
{
|
||||||
xa_t *xa = (xa_t*)data;
|
xa_t *xa = (xa_t*)data;
|
||||||
xa->is_paused = false;
|
xa->is_paused = true;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue