Fixed a bug where nonstops were appearing in Doubles Play.

This commit is contained in:
allen
2013-06-29 02:43:18 +00:00
parent 0f47a5e873
commit 08c1db9345
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@@ -193,12 +193,12 @@ bool isSongAvailable(int index)
}
}
if ( (gs.isDoubles && songs[index].mildDouble == 0 && songs[index].wildDouble == 0) || (!gs.isDoubles && songs[index].mildSingle == 0 && songs[index].mildSingle == 0) )
if ( (gs.isDoubles && songs[index].mildDouble == 0 && songs[index].wildDouble == 0) || (!gs.isDoubles && songs[index].mildSingle == 0 && songs[index].wildSingle == 0) )
{
return false;
}
return songs[index].version != 0 && (earnedIt || allsongsDebug);
return songs[index].version != 0 && songs[index].version < 100 && (earnedIt || allsongsDebug);
}
void killPreviewClip()