Unlock mutex on screen update failure

The mutex was not unlocked on all code paths.
hidpi
Romain Vimont 6 years ago
parent e8dfb723af
commit 0d7f050389

@ -57,6 +57,7 @@ static SDL_bool handle_new_frame(void) {
#endif
if (!screen_update(&screen, frame)){
mutex_unlock(frames.mutex);
return SDL_FALSE;
}
mutex_unlock(frames.mutex);

Loading…
Cancel
Save