mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 01:21:10 +00:00
(input_autodetect.c) Use dir_list_new_special
This commit is contained in:
parent
57f797dad6
commit
6c840cdd59
@ -26,6 +26,7 @@
|
|||||||
#include "input_autodetect.h"
|
#include "input_autodetect.h"
|
||||||
|
|
||||||
#include "../configuration.h"
|
#include "../configuration.h"
|
||||||
|
#include "../list_special.h"
|
||||||
#include "../runloop.h"
|
#include "../runloop.h"
|
||||||
#include "../verbosity.h"
|
#include "../verbosity.h"
|
||||||
|
|
||||||
@ -216,11 +217,11 @@ static bool input_autoconfigure_joypad_from_conf_dir(
|
|||||||
settings->directory.autoconfig,
|
settings->directory.autoconfig,
|
||||||
settings->input.joypad_driver,
|
settings->input.joypad_driver,
|
||||||
sizeof(path));
|
sizeof(path));
|
||||||
list = dir_list_new(path, "cfg", false, false);
|
list = dir_list_new_special(path, DIR_LIST_AUTOCONFIG, "cfg");
|
||||||
|
|
||||||
if (!list || !list->size)
|
if (!list || !list->size)
|
||||||
list = dir_list_new(settings->directory.autoconfig,
|
list = dir_list_new_special(settings->directory.autoconfig,
|
||||||
"cfg", false, false);
|
DIR_LIST_AUTOCONFIG, "cfg");
|
||||||
|
|
||||||
if(!list)
|
if(!list)
|
||||||
return false;
|
return false;
|
||||||
|
@ -62,6 +62,10 @@ struct string_list *dir_list_new_special(const char *input_dir,
|
|||||||
|
|
||||||
switch (type)
|
switch (type)
|
||||||
{
|
{
|
||||||
|
case DIR_LIST_AUTOCONFIG:
|
||||||
|
dir = input_dir;
|
||||||
|
exts = filter;
|
||||||
|
break;
|
||||||
case DIR_LIST_CORES:
|
case DIR_LIST_CORES:
|
||||||
dir = settings->directory.libretro;
|
dir = settings->directory.libretro;
|
||||||
|
|
||||||
|
@ -30,7 +30,8 @@ enum dir_list_type
|
|||||||
DIR_LIST_DATABASES,
|
DIR_LIST_DATABASES,
|
||||||
DIR_LIST_COLLECTIONS,
|
DIR_LIST_COLLECTIONS,
|
||||||
DIR_LIST_PLAIN,
|
DIR_LIST_PLAIN,
|
||||||
DIR_LIST_SHADERS
|
DIR_LIST_SHADERS,
|
||||||
|
DIR_LIST_AUTOCONFIG
|
||||||
};
|
};
|
||||||
|
|
||||||
enum string_list_type
|
enum string_list_type
|
||||||
|
Loading…
x
Reference in New Issue
Block a user