summaryrefslogtreecommitdiff
path: root/src/windows/platform.c
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrik.ramaekers@protonmail.com>2020-01-31 13:12:19 +0100
committerAldrik Ramaekers <aldrik.ramaekers@protonmail.com>2020-01-31 13:12:19 +0100
commita5e8a8b3c99fe69ae181dcaeac8ae687d061a7b5 (patch)
tree75af06f20a5004ab7094645956db887a17e92b21 /src/windows/platform.c
parent260f05025631031b7cc4904805d5017feaf53eda (diff)
work
Diffstat (limited to 'src/windows/platform.c')
-rw-r--r--src/windows/platform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/windows/platform.c b/src/windows/platform.c
index 2187806..12c9065 100644
--- a/src/windows/platform.c
+++ b/src/windows/platform.c
@@ -285,7 +285,7 @@ void platform_create_config_directory()
char tmp[PATH_MAX];
if(SUCCEEDED(SHGetFolderPathA(0, CSIDL_LOCAL_APPDATA|CSIDL_FLAG_CREATE, NULL, 0, tmp)))
{
- string_appendn(tmp, "/text-search", PATH_MAX);
+ string_appendn(tmp, "/moedit", PATH_MAX);
}
@@ -299,7 +299,7 @@ char* get_config_save_location(char *buffer)
{
if(SUCCEEDED(SHGetFolderPathA(0, CSIDL_LOCAL_APPDATA|CSIDL_FLAG_CREATE, NULL, 0, buffer)))
{
- string_appendn(buffer, "\\text-search\\config.txt", MAX_INPUT_LENGTH);
+ string_appendn(buffer, "\\moedit\\config.txt", MAX_INPUT_LENGTH);
return buffer;
}