Fix path to documents folder

This commit is contained in:
Vinyl Darkscratch 2018-03-01 00:45:37 -08:00
parent b5707b0c2e
commit 357ecc520b

View file

@ -581,7 +581,7 @@ Oneshot::Oneshot(RGSSThreadData &threadData) :
}
//Get documents path
char *path = xdg_user_dir_lookup_with_fallback("DOCUMENTS", getenv("HOME"));
char *path = getenv("HOME")+"/Documents"; //xdg_user_dir_lookup_with_fallback("Documents", getenv("HOME"));
p->docsPath = path;
p->gamePath = path;
#ifdef OS_OSX