Xcode wants his variables initialized or won't link (#709)

This commit is contained in:
Alberto Fustinoni 2020-08-19 01:45:59 +09:00 committed by GitHub
parent 9f126e5752
commit 4e188587ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
#include "libretro.h"
retro_video_refresh_t video_cb;
retro_environment_t environ_cb;
retro_video_refresh_t video_cb = NULL;
retro_environment_t environ_cb = NULL;