summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXANTRONIX Development2022-03-06 20:10:25 -0500
committerXANTRONIX Development2022-03-06 20:10:25 -0500
commitb1be8446edf9c4951f4fee321565f7af21ff4a8c (patch)
treeef18a755fa3d312c30fe96eacd29a9b26596feae
parentbcaab1b213b897856909f1a4ee6c2f1d69fd0341 (diff)
downloadxas-b1be8446edf9c4951f4fee321565f7af21ff4a8c.tar.gz
xas-b1be8446edf9c4951f4fee321565f7af21ff4a8c.tar.bz2
xas-b1be8446edf9c4951f4fee321565f7af21ff4a8c.zip
Always return 0 from xas_bank_player_stop()
-rw-r--r--src/bank.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bank.c b/src/bank.c
index e81195d..b7a3f0a 100644
--- a/src/bank.c
+++ b/src/bank.c
@@ -192,7 +192,7 @@ int xas_bank_player_stop(xas_bank_player *player) {
player->entry = 0;
player->index = 0;
- return 1;
+ return 0;
}
int xas_bank_player_playing(xas_bank_player *player) {