(PS3 Salamander) Fix logic bug if libretro_path is empty

This commit is contained in:
Twinaphex 2012-09-01 06:57:57 +02:00
parent 3197a3177f
commit 1b9c554690

View File

@ -95,7 +95,7 @@ static void init_settings(void)
snprintf(libretro_path, sizeof(libretro_path), tmp_str);
}
if(!config_file_exists || strcmp(libretro_path, "") == 0)
if(!config_file_exists || !strcmp(libretro_path, ""))
{
find_and_set_first_file();
}