mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
(Android) Buildfix
This commit is contained in:
parent
c94806ea11
commit
b6e9dbd92c
1 changed files with 4 additions and 1 deletions
|
@ -76,7 +76,10 @@ static char *get_temp_directory_alloc(void)
|
|||
free(wideStr);
|
||||
#endif
|
||||
#elif defined ANDROID
|
||||
path = strcpy_alloc_force(settings->paths.directory_libretro);
|
||||
{
|
||||
settings_t *settings = config_get_ptr();
|
||||
path = strcpy_alloc_force(settings->paths.directory_libretro);
|
||||
}
|
||||
#else
|
||||
path = "/tmp";
|
||||
if (getenv("TMPDIR"))
|
||||
|
|
Loading…
Add table
Reference in a new issue