fix messages

This commit is contained in:
radius 2015-07-31 22:37:03 -05:00
parent a095ccbdb6
commit 9b8daf02ff
2 changed files with 3 additions and 3 deletions

View File

@ -1712,13 +1712,13 @@ static bool config_load_file(const char *path, bool set_defaults)
if (!config_get_path(conf, "system_directory",
settings->system_directory, sizeof(settings->system_directory)))
{
RARCH_WARN("SYSTEM DIR is empty, fill assume CONTENT DIR\n");
RARCH_WARN("SYSTEM DIR is empty, assume CONTENT DIR\n");
*settings->system_directory = '\0';
}
if (!strcmp(settings->system_directory, "default"))
{
RARCH_WARN("SYSTEM DIR is empty, fill assume CONTENT DIR\n");
RARCH_WARN("SYSTEM DIR is empty, assume CONTENT DIR\n");
*settings->system_directory = '\0';
}

View File

@ -754,7 +754,7 @@ bool rarch_environment_cb(unsigned cmd, void *data)
case RETRO_ENVIRONMENT_GET_SYSTEM_DIRECTORY:
if (!settings->system_directory || settings->system_directory[0] == '\0')
{
RARCH_WARN("SYSTEM DIR is empty, fill assume CONTENT DIR %s\n",global->path.fullpath);
RARCH_WARN("SYSTEM DIR is empty, assume CONTENT DIR %s\n",global->path.fullpath);
fill_pathname_basedir(buf, global->path.fullpath,
sizeof(buf));