summaryrefslogtreecommitdiff
path: root/src/player.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/player.c')
-rw-r--r--src/player.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/player.c b/src/player.c
index 8a46f31..6e97e46 100644
--- a/src/player.c
+++ b/src/player.c
@@ -530,6 +530,12 @@ void *BarPlayerThread (void *data) {
ret = (void *) PLAYER_RET_ERR;
}
+ if (wRet != WAITRESS_RET_OK && wRet != WAITRESS_RET_CB_ABORT) {
+ BarUiMsg (player->settings, MSG_ERR, "Cannot access audio file: %s\n",
+ WaitressErrorToStr (wRet));
+ ret = (void *) PLAYER_RET_ERR;
+ }
+
ao_close(player->audioOutDevice);
WaitressFree (&player->waith);
free (player->buffer);