Will now send 'path' to retro_load_game if 'Set Supports No Content

Enable' is set to false
This commit is contained in:
twinaphex 2015-04-28 03:30:07 +02:00
parent f6586f7cde
commit 6f6e1d0e69

View File

@ -576,7 +576,7 @@ bool init_content_file(void)
attr.i |= global->system.info.need_fullpath << 1;
attr.i |= (!global->system.no_content) << 2;
string_list_append(content,
global->libretro_no_content ? "" : global->fullpath, attr);
(global->libretro_no_content && settings->core.set_supports_no_game_enable) ? "" : global->fullpath, attr);
}
#ifdef HAVE_ZLIB