diff --git a/stepmania/src/PlayerOptions.cpp b/stepmania/src/PlayerOptions.cpp index 27e968b322..be9e585d7a 100644 --- a/stepmania/src/PlayerOptions.cpp +++ b/stepmania/src/PlayerOptions.cpp @@ -562,7 +562,7 @@ bool PlayerOptions::IsHandicapForCourse( Course* pCourse ) for( unsigned i=0; im_entries.size(); i++ ) { const CourseEntry& ce = pCourse->m_entries[i]; - if( IsHandicapForSong(ce.pSong) ) + if( ce.pSong && IsHandicapForSong(ce.pSong) ) return true; } return false;