fix potential crash

This commit is contained in:
Glenn Maynard
2003-07-28 23:38:42 +00:00
parent e4e96da008
commit 8533a28987
+2 -2
View File
@@ -871,10 +871,10 @@ void Course::UpdateCourseStats()
vector<Info> ci; vector<Info> ci;
GetCourseInfo( GAMESTATE->GetCurrentStyleDef()->m_NotesType, ci ); GetCourseInfo( GAMESTATE->GetCurrentStyleDef()->m_NotesType, ci );
for(i = 0; i < m_entries.size(); i++) for(i = 0; i < ci.size(); i++)
{ {
// courses with random/players best-worst songs should go at the end // courses with random/players best-worst songs should go at the end
if (m_entries[i].type != Entry::fixed) if (m_entries[ ci[i].CourseIndex ].type != Entry::fixed)
{ {
SortOrder_AvgDifficulty = 9999999; // large number SortOrder_AvgDifficulty = 9999999; // large number
SortOrder_Ranking = 3; SortOrder_Ranking = 3;