mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
(Android) Some build fixes
This commit is contained in:
parent
313f015fcd
commit
89be56a9ae
@ -452,12 +452,13 @@ static bool device_is_game_console(const char *name)
|
||||
|
||||
bool test_permissions(const char *path)
|
||||
{
|
||||
RARCH_LOG("Testing permissions for %s\n",path);
|
||||
char buf[PATH_MAX_LENGTH];
|
||||
bool ret;
|
||||
|
||||
fill_pathname_join(buf, path,
|
||||
"ra-test", buf);
|
||||
bool ret = path_mkdir(buf);
|
||||
RARCH_LOG("Testing permissions for %s\n",path);
|
||||
|
||||
fill_pathname_join(buf, path, "ra-test", sizeof(buf));
|
||||
ret = path_mkdir(buf);
|
||||
|
||||
RARCH_LOG("Create %s %s\n", buf, ret ? "true" : "false");
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user