From 357ecc520b04f8c96fac973105cc9203b45f2fc7 Mon Sep 17 00:00:00 2001 From: Vinyl Darkscratch Date: Thu, 1 Mar 2018 00:45:37 -0800 Subject: [PATCH] Fix path to documents folder --- src/oneshot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/oneshot.cpp b/src/oneshot.cpp index 021cb78..9ef7370 100644 --- a/src/oneshot.cpp +++ b/src/oneshot.cpp @@ -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