(360) Updated 360 port too

This commit is contained in:
TwinAphex51224 2012-02-15 18:57:29 +01:00
parent 317f255eae
commit 8dcf132b0c
1 changed files with 3 additions and 3 deletions

View File

@ -193,7 +193,7 @@ static void set_default_settings (void)
static void init_settings (void)
{
if(!filepath_exists(SYS_CONFIG_FILE))
if(!path_file_exists(SYS_CONFIG_FILE))
{
SSNES_ERR("Config file \"%s\" desn't exist. Creating...\n", "game:\\ssnes.cfg");
FILE * f;
@ -219,7 +219,7 @@ static void init_settings (void)
static void save_settings (void)
{
if(!filepath_exists(SYS_CONFIG_FILE))
if(!path_file_exists(SYS_CONFIG_FILE))
{
FILE * f;
f = fopen(SYS_CONFIG_FILE, "w");
@ -363,7 +363,7 @@ begin_loop:
goto begin_loop;
begin_shutdown:
if(filepath_exists(SYS_CONFIG_FILE))
if(path_file_exists(SYS_CONFIG_FILE))
save_settings();
xdk360_video_deinit();
}