[ORBIS] Fix uncontrolled custoa.inim path for orbis ind dirs.c
This commit is contained in:
parent
967bca8f9d
commit
263d82146c
4
dirs.c
4
dirs.c
|
@ -309,7 +309,11 @@ void dir_check_defaults(void)
|
||||||
/* early return for people with a custom folder setup
|
/* early return for people with a custom folder setup
|
||||||
so it doesn't create unnecessary directories
|
so it doesn't create unnecessary directories
|
||||||
*/
|
*/
|
||||||
|
#ifdef ORBIS
|
||||||
|
if (filestream_exists("host0:app/custom.ini"))
|
||||||
|
#else
|
||||||
if (filestream_exists("custom.ini"))
|
if (filestream_exists("custom.ini"))
|
||||||
|
#endif
|
||||||
return;
|
return;
|
||||||
|
|
||||||
for (i = 0; i < DEFAULT_DIR_LAST; i++)
|
for (i = 0; i < DEFAULT_DIR_LAST; i++)
|
||||||
|
|
Loading…
Reference in New Issue