diff --git a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_service.cpp b/stratosphere/ams_mitm/source/fs_mitm/fsmitm_service.cpp index 98d08a9..935137e 100644 --- a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_service.cpp +++ b/stratosphere/ams_mitm/source/fs_mitm/fsmitm_service.cpp @@ -180,7 +180,7 @@ } /* For now, until we're sure this is robust, only intercept normal savedata , check if flag exist*/ - if (!has_redirect_save_flags || !should_redirect_saves || save_struct.SaveDataType != FsSaveDataType_SaveData) { + if (!has_redirect_save_flags || !should_redirect_saves || save_struct.saveDataType != FsSaveDataType_SaveData) { return ResultAtmosphereMitmShouldForwardToSession; } @@ -201,7 +201,7 @@ /* Verify that we can open the save directory, and that it exists. */ const u64 target_tid = save_struct.titleID == 0 ? this->title_id : save_struct.titleID; FsPath save_dir_path; - R_TRY(FsSaveUtils::GetSaveDataDirectoryPath(save_dir_path, space_id, save_struct.SaveDataType, target_tid, save_struct.userID, save_struct.saveID)); + R_TRY(FsSaveUtils::GetSaveDataDirectoryPath(save_dir_path, space_id, save_struct.saveDataType, target_tid, save_struct.userID, save_struct.saveID)); /* Check if this is the first time we're making the save. */ bool is_new_save = false;