mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
(dynamic.c) Fix logic error
This commit is contained in:
parent
16da8cfe2d
commit
bfb7ee30c5
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue