From e50d6e0656e2a31d45ddc52c13b3da6738e93a17 Mon Sep 17 00:00:00 2001 From: notaz Date: Sun, 31 Oct 2021 16:33:02 +0200 Subject: [PATCH] allow to opt out of HOME config path pcsx_rearmed never used it so keep it this way there. --- linux/plat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/plat.c b/linux/plat.c index 779d5b1..45ae371 100644 --- a/linux/plat.c +++ b/linux/plat.c @@ -86,7 +86,7 @@ int plat_get_skin_dir(char *dst, int len) #endif int plat_get_root_dir(char *dst, int len) { -#if !defined(__GP2X__) && !defined(PANDORA) +#if !defined(NO_HOME_DIR) && !defined(__GP2X__) && !defined(PANDORA) const char *home = getenv("HOME"); int ret; -- 2.39.2