mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 03:04:00 +00:00
Fix crash
This commit is contained in:
parent
e50d0dc073
commit
7831732497
|
@ -2229,7 +2229,7 @@ std::string VLSong::PrimaryGroove() const
|
|||
{
|
||||
std::string bestGroove = fProperties[0].fGroove;
|
||||
|
||||
for (size_t p=1; p<fProperties.size()-EmptyEnding(); ++p)
|
||||
for (size_t p=1; p<fProperties.size(); ++p)
|
||||
if (fProperties[p].fGroove != bestGroove) {
|
||||
//
|
||||
// Multiple grooves in song, count them the hard way
|
||||
|
|
Loading…
Reference in New Issue
Block a user