diff options
author | Takamichi Horikawa <takamichiho@gmail.com> | 2017-01-18 23:37:07 +0900 |
---|---|---|
committer | Takamichi Horikawa <takamichiho@gmail.com> | 2017-01-18 23:37:07 +0900 |
commit | e8fd09abf68b944b05554c82adb577514cad5ca5 (patch) | |
tree | f8882715e86534cec2dc20154fd24c6bef3c668b /fmdriver/ppz8.c | |
parent | 09ea1fe272aca6ebb6840f02765acd44ac3ecebc (diff) |
improve FMDSP and enable title display on win32
Diffstat (limited to 'fmdriver/ppz8.c')
-rw-r--r-- | fmdriver/ppz8.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fmdriver/ppz8.c b/fmdriver/ppz8.c index 7984575..39caf0d 100644 --- a/fmdriver/ppz8.c +++ b/fmdriver/ppz8.c @@ -247,6 +247,7 @@ static void ppz8_channel_stop(struct ppz8 *ppz8, uint8_t ch) { if (ch >= 8) return; struct ppz8_channel *channel = &ppz8->channel[ch]; channel->playing = false; + channel->ptr = -1; } static void ppz8_channel_volume(struct ppz8 *ppz8, uint8_t ch, uint8_t vol) { |