Fix completely wrong results from the Kanji timer
Durations were being set in milliseconds rather than centiseconds. Originally committed to SVN as r6610.
This commit is contained in:
parent
232bae36e7
commit
7f427e01df
1 changed files with 1 additions and 1 deletions
|
@ -381,7 +381,7 @@ wxString KaraokeLineMatchDisplay::GetOutputLine() const
|
|||
{
|
||||
duration += match.src[j].duration;
|
||||
}
|
||||
res = wxString::Format("%s{\\k%d}%s", res, duration, match.dst);
|
||||
res = wxString::Format("%s{\\k%d}%s", res, duration / 10, match.dst);
|
||||
}
|
||||
|
||||
return res;
|
||||
|
|
Loading…
Reference in a new issue