Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | core: fix: crash when command/parameter at start of tune since commit [2c336cdff0] - reported by Stuart Soloway |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
0b33b1027909aaa512ee4a4fdc4cf35c |
| User & Date: | jef 2022-05-08 06:11:33.001 |
Context
|
2022-05-08
| ||
| 14:11 | core: better beams when %%staffscale != 1 ... (check-in: 3df12a1eb9 user: jef tags: trunk) | |
| 06:11 | core: fix: crash when command/parameter at start of tune since commit [2c336cdff0] - reported by Stuart Soloway ... (check-in: 0b33b10279 user: jef tags: trunk) | |
|
2022-05-07
| ||
| 17:07 | core: fix: crash on tuplets of rests - reported by Frédéric Boulanger ... (check-in: e541a7f522 user: jef tags: trunk) | |
Changes
Changes to core/tune.js.
| ︙ | ︙ | |||
369 370 371 372 373 374 375 |
s2 = {
type: C.SM,
v: s.v,
p_v: s.p_v,
time: s.time,
dur:0,
next: s,
| | > | 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 |
s2 = {
type: C.SM,
v: s.v,
p_v: s.p_v,
time: s.time,
dur:0,
next: s,
prev: s.prev,
fmt: s.fmt
}
if (s.prev)
s.prev.next = s2
else
voice_tb[s.v].sym = s2
s.prev = s2
}
|
| ︙ | ︙ |