ref: b8c0e4deccffcd668f7d08ffc1fe16147e9e894a
parent: a654922d714c701caa896f63c37722dc4ff40260
author: qwx <>
date: Sun Jan 13 14:07:23 EST 2019
set proper homedir path
--- a/code/unix/unix_shared.c
+++ b/code/unix/unix_shared.c
@@ -223,7 +223,7 @@
if ((p = getenv("home")) != NULL) {
Q_strncpyz(homePath, p, sizeof(homePath));
free(p);
- Q_strcat(homePath, sizeof(homePath), "/.q3a");
+ Q_strcat(homePath, sizeof(homePath), "/lib/quake3");
if(Sys_Mkdir(homePath) < 0)
Sys_Error("Unable to create directory \"%s\"\n", homePath);
return homePath;