Update src/path.c
This commit is contained in:
parent
a08a724931
commit
453ccf0380
18
src/path.c
18
src/path.c
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue