diff --git a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_service.cpp b/stratosphere/ams_mitm/source/fs_mitm/fsmitm_service.cpp index 57a65af4c..2f850d938 100644 --- a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_service.cpp +++ b/stratosphere/ams_mitm/source/fs_mitm/fsmitm_service.cpp @@ -162,13 +162,13 @@ Result FsMitmService::OpenFileSystemWithId(Out> out_fs, u8 space_id, FsSave save_struct) { - const bool has_sd_save_flags = Utils::HasFlag(this->title_id, "sd_save"); + const bool has_redirect_save_flags = Utils::HasFlag(this->title_id, "redirect_save"); bool should_redirect_saves = false; if (R_FAILED(Utils::GetSettingsItemBooleanValue("atmosphere", "fsmitm_redirect_saves_to_sd", &should_redirect_saves))) { return ResultAtmosphereMitmShouldForwardToSession; } - - if (!has_sd_save_flags) { + //check if flag exist + if (!has_redirect_save_flags) { should_redirect_saves = false; }