From b867602aab8a0e3b5a8fb1cfb50fa522b33be366 Mon Sep 17 00:00:00 2001 From: Nightkingale <63483138+Nightkingale@users.noreply.github.com> Date: Tue, 14 May 2024 11:56:22 -0600 Subject: [PATCH] Flush the proper volume paths --- source/main.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/source/main.cpp b/source/main.cpp index 2fb5d88..b8143a1 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -74,10 +74,8 @@ get_user_information() void deinitialize() { - // fs probably doesn't need to be flushed, but it doesn't hurt. - FSAFlushVolume(client_handle, "fs"); - // storage_mlc will need to be flushed, or else changes might not save. - FSAFlushVolume(client_handle, "storage_mlc"); + FSAFlushVolume(client_handle, "/vol/external01"); // Probably not necessary, but doesn't hurt. + FSAFlushVolume(client_handle, "/vol/storage_mlc01"); // MLC actually does need to be flushed. FSADelClient(client_handle); nn::act::Finalize();