diff options
Diffstat (limited to 'windows/cache.c')
-rw-r--r-- | windows/cache.c | 4 |
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; } |