diff --git a/stepmania/src/SongUtil.cpp b/stepmania/src/SongUtil.cpp index aebca145ad..7f066e7450 100644 --- a/stepmania/src/SongUtil.cpp +++ b/stepmania/src/SongUtil.cpp @@ -37,11 +37,11 @@ bool SongCriteria::Matches( const Song *pSong ) const { DEFAULT_FAIL(m_Selectable); case Selectable_Yes: - if( UNLOCKMAN && !(UNLOCKMAN->SongIsLocked(pSong) & LOCKED_SELECTABLE) ) + if( UNLOCKMAN && UNLOCKMAN->SongIsLocked(pSong) & LOCKED_SELECTABLE ) return false; break; case Selectable_No: - if( UNLOCKMAN && UNLOCKMAN->SongIsLocked(pSong) & LOCKED_SELECTABLE ) + if( UNLOCKMAN && !(UNLOCKMAN->SongIsLocked(pSong) & LOCKED_SELECTABLE) ) return false; break; case Selectable_DontCare: