From a3d8a9508f3d0edfffc1ab5791bb29b0ae7a79c5 Mon Sep 17 00:00:00 2001 From: louie Date: Fri, 10 Dec 2021 15:26:13 -0800 Subject: Changed name. May tidy up/differentiate 'Terminal Media Launcher' vs 'terminal-media-launcher' --- windows/cache.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'windows/cache.c') 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; } -- cgit