Reverse...

This commit is contained in:
def 2017-05-16 17:52:29 +02:00
parent 666d1585b7
commit a7ee59804b

View file

@ -665,7 +665,7 @@ void CPlayer::ProcessPause()
int CPlayer::Pause(int State, bool Force) int CPlayer::Pause(int State, bool Force)
{ {
if(State >= PAUSE_NONE && State <= PAUSE_SPEC) // Invalid pause state passed if(State < PAUSE_NONE || State > PAUSE_SPEC) // Invalid pause state passed
return 0; return 0;
if(!m_pCharacter) if(!m_pCharacter)