From 3ad3625271b776642735bb1fd8d090aedf955583 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 14 Nov 2014 22:55:40 -0500 Subject: [PATCH] xaudio: Fix a typo in xa_stop Pretty sure we should set the pause var to true on stopping. --- audio/xaudio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/xaudio.c b/audio/xaudio.c index c0ff23a77b..7c8b943dfe 100644 --- a/audio/xaudio.c +++ b/audio/xaudio.c @@ -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; }