Not sure why we are doing this, we shouldn't need to do this if

we already memcpy this in
This commit is contained in:
twinaphex 2017-05-29 00:57:39 +02:00
parent 30c5a2870f
commit ca6c0110fe

View File

@ -354,14 +354,6 @@ bool libretro_get_system_info(const char *path,
memcpy(info, &dummy_info, sizeof(*info));
if (!string_is_empty(dummy_info.library_name))
info->library_name = strdup(dummy_info.library_name);
if (!string_is_empty(dummy_info.library_version))
info->library_version = strdup(dummy_info.library_version);
if (dummy_info.valid_extensions)
info->valid_extensions = strdup(dummy_info.valid_extensions);
#ifdef HAVE_DYNAMIC
dylib_close(lib);
#endif