summaryrefslogtreecommitdiff
path: root/windows/cache.c
diff options
context:
space:
mode:
authorlouie <lshprung@yahoo.com>2021-12-10 15:26:13 -0800
committerlouie <lshprung@yahoo.com>2021-12-10 15:26:13 -0800
commita3d8a9508f3d0edfffc1ab5791bb29b0ae7a79c5 (patch)
treef546c0bf53e07fec255529c82c42148b1c9f0ae1 /windows/cache.c
parente58f35f4580ad4377c3ba5dcaee5bbbd938713c6 (diff)
Changed name. May tidy up/differentiate 'Terminal Media Launcher' vs 'terminal-media-launcher'
Diffstat (limited to 'windows/cache.c')
-rw-r--r--windows/cache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/windows/cache.c b/windows/cache.c
index a7dd81e..01db0ef 100644
--- a/windows/cache.c
+++ b/windows/cache.c
@@ -20,11 +20,11 @@ char *get_cache_path(bool create){
//if create is asserted, build the path to the file
if(create){
- sprintf(path, "%s%ctml%c", appdata, sep, sep);
+ sprintf(path, "%s%cterminal-media-launcher%c", appdata, sep, sep);
mkdir(path);
}
- sprintf(path, "%s%ctml%ccache.bin", appdata, sep, sep);
+ sprintf(path, "%s%cterminal-media-launcher%ccache.bin", appdata, sep, sep);
return path;
}