1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 12:15:49 +00:00

Buildfix - have to rearrange scan_settings too

This commit is contained in:
twinaphex 2020-03-07 18:45:32 +01:00
parent 5a147fe46f
commit 4ad03e6553

View File

@ -67,6 +67,11 @@ typedef struct
* are not thread safe, but we only access them when pushing a
* task, not in the task thread itself, so all is well) */
static scan_settings_t scan_settings = {
false, /* search_archives */
false, /* filter_dat_content */
false, /* overwrite_playlist */
MANUAL_CONTENT_SCAN_SYSTEM_NAME_CONTENT_DIR, /* system_name_type */
MANUAL_CONTENT_SCAN_CORE_DETECT, /* core_type */
"", /* content_dir */
"", /* system_name_content_dir */
"", /* system_name_database */
@ -76,11 +81,6 @@ static scan_settings_t scan_settings = {
"", /* file_exts_core */
"", /* file_exts_custom */
"", /* dat_file_path */
MANUAL_CONTENT_SCAN_SYSTEM_NAME_CONTENT_DIR, /* system_name_type */
MANUAL_CONTENT_SCAN_CORE_DETECT, /* core_type */
false, /* search_archives */
false, /* filter_dat_content */
false /* overwrite_playlist */
};
/*****************/