Update src/path.c

This commit is contained in:
Mikita Wiśniewski 2022-10-12 10:04:37 +07:00
parent a08a724931
commit 453ccf0380
1 changed files with 9 additions and 9 deletions

View File

@ -40,15 +40,15 @@
#include <stdlib.h>
static struct {
char* cwd; /* current working directory */
char* data_custom; /* set by config data_path */
char* data_user; /* ~/.local/share/voxelands */
char* data_global; /* /usr/share/voxelands */
char* data; /* ./data if it exists */
char* world; /* data_user + /worlds/ + world name */
char* home; /* ~/. */
char* config; /* ~/.config/voxelands */
char* screenshot; /* set by config screenshot_path */
char* cwd; // current working directory
char* data_custom; // set by config data_path
char* data_user; // ~/.local/share/voxelands
char* data_global; // /usr/share/voxelands
char* data; // ./data if it exists
char* world; // data_user + /worlds/ + world name
char* home; // ~/.
char* config; // ~/.config/voxelands
char* screenshot; // set by config screenshot_path
} path = {
NULL,
NULL,