mirror of https://github.com/snes9xgit/snes9x.git
GTK: Don't change config directory mode every time.
This triggers something laggy in GNOME environment.
This commit is contained in:
parent
f7cb5667e8
commit
00da664a60
|
@ -446,7 +446,8 @@ int Snes9xConfig::load_config_file ()
|
|||
}
|
||||
else
|
||||
{
|
||||
chmod (path.c_str (), 0755);
|
||||
if (!(file_info.st_mode & 0700))
|
||||
chmod (path.c_str (), file_info.st_mode | 0700);
|
||||
}
|
||||
|
||||
path = get_config_file_name ();
|
||||
|
|
|
@ -168,11 +168,18 @@ S9xGetDirectory (enum s9x_getdirtype dirtype)
|
|||
path[0] = '\0';
|
||||
}
|
||||
|
||||
/* Try and mkdir, whether it exists or not */
|
||||
/* Check if directory exists, make it and/or set correct permissions */
|
||||
if (dirtype != HOME_DIR && path[0] != '\0')
|
||||
{
|
||||
mkdir (path, 0755);
|
||||
chmod (path, 0755);
|
||||
struct stat file_info;
|
||||
|
||||
if (stat(path, &file_info) == -1)
|
||||
{
|
||||
mkdir(path, 0755);
|
||||
chmod(path, 0755);
|
||||
}
|
||||
else if (!(file_info.st_mode & 0700))
|
||||
chmod(path, file_info.st_mode | 0700);
|
||||
}
|
||||
|
||||
/* Anything else, use ROM filename path */
|
||||
|
|
Loading…
Reference in New Issue