mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	fs: adjust future save path
This commit is contained in:
		@@ -82,9 +82,9 @@ std::string GetFutureSaveDataPath(SaveDataSpaceId space_id, SaveDataType type, u
 | 
				
			|||||||
    // Only detect account/device saves from the future location.
 | 
					    // Only detect account/device saves from the future location.
 | 
				
			||||||
    switch (type) {
 | 
					    switch (type) {
 | 
				
			||||||
    case SaveDataType::SaveData:
 | 
					    case SaveDataType::SaveData:
 | 
				
			||||||
        return fmt::format("{}/account/{}/{:016X}/1", space_id_path, uuid.RawString(), title_id);
 | 
					        return fmt::format("{}/account/{}/{:016X}/0", space_id_path, uuid.RawString(), title_id);
 | 
				
			||||||
    case SaveDataType::DeviceSaveData:
 | 
					    case SaveDataType::DeviceSaveData:
 | 
				
			||||||
        return fmt::format("{}/device/{:016X}/1", space_id_path, title_id);
 | 
					        return fmt::format("{}/device/{:016X}/0", space_id_path, title_id);
 | 
				
			||||||
    default:
 | 
					    default:
 | 
				
			||||||
        return "";
 | 
					        return "";
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -310,8 +310,8 @@ private:
 | 
				
			|||||||
class IFileSystem final : public ServiceFramework<IFileSystem> {
 | 
					class IFileSystem final : public ServiceFramework<IFileSystem> {
 | 
				
			||||||
public:
 | 
					public:
 | 
				
			||||||
    explicit IFileSystem(Core::System& system_, FileSys::VirtualDir backend_, SizeGetter size_)
 | 
					    explicit IFileSystem(Core::System& system_, FileSys::VirtualDir backend_, SizeGetter size_)
 | 
				
			||||||
        : ServiceFramework{system_, "IFileSystem"}, backend{std::move(backend_)},
 | 
					        : ServiceFramework{system_, "IFileSystem"}, backend{std::move(backend_)}, size{std::move(
 | 
				
			||||||
          size{std::move(size_)} {
 | 
					                                                                                      size_)} {
 | 
				
			||||||
        static const FunctionInfo functions[] = {
 | 
					        static const FunctionInfo functions[] = {
 | 
				
			||||||
            {0, &IFileSystem::CreateFile, "CreateFile"},
 | 
					            {0, &IFileSystem::CreateFile, "CreateFile"},
 | 
				
			||||||
            {1, &IFileSystem::DeleteFile, "DeleteFile"},
 | 
					            {1, &IFileSystem::DeleteFile, "DeleteFile"},
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user