macosx: fix flawed logic (fixes #21706)

This commit is contained in:
Rémi Denis-Courmont 2019-01-13 11:05:11 +02:00
parent bba54c1201
commit 5cd08fb051
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ static void WindowSetFullscreen(vout_window_t *p_wnd, const char *psz_id)
return;
}
int i_full = psz_id == &windowed;
int i_full = psz_id != &windowed;
BOOL b_animation = YES;
@autoreleasepool {