fix null check in video_display_server

This commit is contained in:
Michael Lelli 2020-01-07 09:36:32 -06:00 committed by GitHub
parent 69208d0fca
commit dcb6bae868
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,7 +74,7 @@ void* video_display_server_init(void)
break;
}
if (current_display_server->init && current_display_server->init)
if (current_display_server && current_display_server->init)
current_display_server_data = current_display_server->init();
RARCH_LOG("[Video]: Found display server: %s\n",