mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
fixed so that downloadedmaps directory is created
This commit is contained in:
parent
1706346245
commit
4fa7806009
|
@ -69,6 +69,9 @@ void engine_init(const char *appname)
|
|||
str_format(path, sizeof(path), "%s/maps", application_save_path);
|
||||
fs_makedir(path);
|
||||
|
||||
str_format(path, sizeof(path), "%s/downloadedmaps", application_save_path);
|
||||
fs_makedir(path);
|
||||
|
||||
str_format(path, sizeof(path), "%s/demos", application_save_path);
|
||||
fs_makedir(path);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue