We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This problem was fixed here: 6ff08ee
But again, the following lines are used (see: https://github.com/nesbox/TIC-80/blob/master/src/core/sound.c):
... 252 && jumpCmd->active) 253 { 254 music_state->music.frame = jumpCmd->frame; 255 music_state->music.row = jumpCmd->beat * NOTES_PER_BEAT; 256 core->state.music.ticks = row2tick(core, track, music_state->music.row); 257 memset(jumpCmd, 0, sizeof(tic_jump_command)); 258 } ...
and
... 472 for (s32 c = 0; c < TIC_SOUND_CHANNELS; c++) 473 setMusicChannelData(memory, -1, 0, 0, MAX_VOLUME, MAX_VOLUME, c); 474 475 ram->music_state.music.row = row; 476 ram->music_state.music.frame = frame < 0 ? 0 : frame; 477 ram->music_state.flag.music_loop = loop; 478 ram->music_state.flag.music_sustain = sustain; ...
The text was updated successfully, but these errors were encountered:
#1486: fixed pause with Jxx command
28fd122
fixed here 28fd122 My mistake, I did a revert of another bug inaccurately, sorry Please check it, thank you.
Sorry, something went wrong.
nesbox
No branches or pull requests
This problem was fixed here:
6ff08ee
But again, the following lines are used (see: https://github.com/nesbox/TIC-80/blob/master/src/core/sound.c):
and
The text was updated successfully, but these errors were encountered: