mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
~ resolved at config save
This commit is contained in:
parent
e4829981b1
commit
b9d98efc0b
|
@ -66,12 +66,12 @@ void config_set(const char *line)
|
|||
|
||||
void config_load(const char *filename)
|
||||
{
|
||||
char full_path[1024];
|
||||
if (filename[0] == '~')
|
||||
{
|
||||
char *home = getenv("HOME");
|
||||
if (home)
|
||||
{
|
||||
char full_path[1024];
|
||||
sprintf(full_path, "%s%s", home, filename+1);
|
||||
filename = full_path;
|
||||
}
|
||||
|
@ -96,12 +96,12 @@ void config_load(const char *filename)
|
|||
|
||||
void config_save(const char *filename)
|
||||
{
|
||||
char full_path[1024];
|
||||
if (filename[0] == '~')
|
||||
{
|
||||
char *home = getenv("HOME");
|
||||
if (home)
|
||||
{
|
||||
char full_path[1024];
|
||||
sprintf(full_path, "%s%s", home, filename+1);
|
||||
filename = full_path;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue