diff options
author | XANTRONIX Development | 2022-03-06 20:10:25 -0500 |
---|---|---|
committer | XANTRONIX Development | 2022-03-06 20:10:25 -0500 |
commit | b1be8446edf9c4951f4fee321565f7af21ff4a8c (patch) | |
tree | ef18a755fa3d312c30fe96eacd29a9b26596feae | |
parent | bcaab1b213b897856909f1a4ee6c2f1d69fd0341 (diff) | |
download | xas-b1be8446edf9c4951f4fee321565f7af21ff4a8c.tar.gz xas-b1be8446edf9c4951f4fee321565f7af21ff4a8c.tar.bz2 xas-b1be8446edf9c4951f4fee321565f7af21ff4a8c.zip |
Always return 0 from xas_bank_player_stop()
-rw-r--r-- | src/bank.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |