fixed so that downloadedmaps directory is created

This commit is contained in:
Magnus Auvinen 2008-11-08 10:25:53 +00:00
parent 1706346245
commit 4fa7806009

View file

@ -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);
}