Merge pull request #9962 from ToadKing/patch-1

fix null check in video_display_server
This commit is contained in:
Twinaphex 2020-01-07 16:47:00 +01:00 committed by GitHub
commit 6d4b1b69e5
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",