From f297eb45b45b25872b19f082a16743d43f55e71a Mon Sep 17 00:00:00 2001 From: Joel16 Date: Fri, 30 Apr 2021 14:56:52 -0400 Subject: [PATCH] applist: Remove copy of app.db when sorting is complete --- source/applist.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/applist.cpp b/source/applist.cpp index 4f9964f..68cfcd9 100644 --- a/source/applist.cpp +++ b/source/applist.cpp @@ -168,7 +168,8 @@ namespace AppList { if (R_FAILED(ret = FS::CopyFile(path_edit, path))) return ret; - + + FS::RemoveFile(path_edit); return 0; }