diff options
| author | Aldrik Ramaekers <aldrik.ramaekers@protonmail.com> | 2020-06-12 14:56:50 +0200 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrik.ramaekers@protonmail.com> | 2020-06-12 14:56:50 +0200 |
| commit | 91e66fff08f6101eeffea22d78c68e53dde0d4f0 (patch) | |
| tree | d600a704f456c4ceb1f58a6802149a48c66265db /src/linux | |
| parent | ebd3c08d9c656557bd9692f23926ca46e96d5738 (diff) | |
working on cpu render layer, cleanup
Diffstat (limited to 'src/linux')
| -rw-r--r-- | src/linux/platform.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/linux/platform.c b/src/linux/platform.c index 35c5745..10e812d 100644 --- a/src/linux/platform.c +++ b/src/linux/platform.c @@ -144,7 +144,7 @@ void platform_create_config_directory() { char *env = getenv("HOME"); char tmp[PATH_MAX]; - snprintf(tmp, PATH_MAX, "%s%s", env, CONFIG_DIRECTORY); + snprintf(tmp, PATH_MAX, "%s%s", env, CONFIG_DIRECTORY_LINUX); if (!platform_directory_exists(tmp)) { @@ -155,7 +155,7 @@ void platform_create_config_directory() char* get_config_save_location(char *buffer) { char *env = getenv("HOME"); - snprintf(buffer, PATH_MAX, "%s%s", env, CONFIG_DIRECTORY"/config.txt"); + snprintf(buffer, PATH_MAX, "%s%s", env, CONFIG_DIRECTORY_LINUX"/config.txt"); return buffer; } |
