|
@@ -224,7 +224,8 @@ export default defineComponent({
|
|
|
if (preTimes.length) {
|
|
|
for (let index = preTimes.length-1; index >= 0; index--) {
|
|
|
const item = preTimes[index]
|
|
|
- const note = getNoteByMeasuresSlursStart(item)
|
|
|
+ // const note = getNoteByMeasuresSlursStart(item)
|
|
|
+ const note = item
|
|
|
if (note.formatLyricsEntries.contains('Play') || note.formatLyricsEntries.contains('Play...')) {
|
|
|
preLyricsContent = 'Play'
|
|
|
break
|
|
@@ -238,7 +239,8 @@ export default defineComponent({
|
|
|
}
|
|
|
for (let index = 0; index < selectTimes.length; index++) {
|
|
|
const item = selectTimes[index];
|
|
|
- const note = getNoteByMeasuresSlursStart(item);
|
|
|
+ // const note = getNoteByMeasuresSlursStart(item);
|
|
|
+ const note = item;
|
|
|
// #8701 bug: 评测模式,是以曲谱本身的速度进行评测,所以rate取1,不需要转换
|
|
|
// const rate = state.speed / state.originSpeed;
|
|
|
const rate = state.basePlayRate * state.originAudioPlayRate; // 播放倍率
|