mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
(dynamic.c) Fix logic error
This commit is contained in:
parent
16da8cfe2d
commit
bfb7ee30c5
@ -752,7 +752,7 @@ bool rarch_environment_cb(unsigned cmd, void *data)
|
||||
break;
|
||||
|
||||
case RETRO_ENVIRONMENT_GET_SYSTEM_DIRECTORY:
|
||||
if (!settings->system_directory || settings->system_directory[0] == '\0')
|
||||
if (settings->system_directory[0] == '\0' || settings->system_directory[0] == '\0')
|
||||
{
|
||||
RARCH_WARN("SYSTEM DIR is empty, assume CONTENT DIR %s\n",global->path.fullpath);
|
||||
fill_pathname_basedir(buf, global->path.fullpath,
|
||||
|
Loading…
x
Reference in New Issue
Block a user