mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2025-02-09 13:14:46 +01:00
Add some Results
This commit is contained in:
parent
95ef1c9529
commit
f44b09ec1f
@ -159,10 +159,14 @@ Module,DescriptionStart,DescriptionEnd,Name,Summary
|
||||
2,6061,,InvalidOffset,
|
||||
2,6062,,InvalidSize,
|
||||
2,6063,,NullptrArgument,
|
||||
2,6064,,InvalidAlignment,
|
||||
2,6065,,InvalidMountName,
|
||||
2,6066,,ExtensionSizeTooLarge,
|
||||
2,6067,,ExtensionSizeInvalid,
|
||||
2,6068,,ReadOldSaveDataInfoReader,
|
||||
2,6068,,InvalidSaveDataInfoReader,
|
||||
2,6069,,InvalidCacheStorageSize,
|
||||
2,6070,,InvalidCacheStorageIndex,
|
||||
2,6071,,InvalidCommitNameCount,Up to 10 file systems can be committed at the same time.
|
||||
|
||||
2,6080,6099,InvalidEnumValue,
|
||||
2,6081,,InvalidSaveDataState,
|
||||
|
|
@ -313,6 +313,8 @@ namespace LibHac.Fs
|
||||
public static Result.Base InvalidSize => new Result.Base(ModuleFs, 6062);
|
||||
/// <summary>Error code: 2002-6063; Inner value: 0x2f5e02</summary>
|
||||
public static Result.Base NullptrArgument => new Result.Base(ModuleFs, 6063);
|
||||
/// <summary>Error code: 2002-6064; Inner value: 0x2f6002</summary>
|
||||
public static Result.Base InvalidAlignment => new Result.Base(ModuleFs, 6064);
|
||||
/// <summary>Error code: 2002-6065; Inner value: 0x2f6202</summary>
|
||||
public static Result.Base InvalidMountName => new Result.Base(ModuleFs, 6065);
|
||||
/// <summary>Error code: 2002-6066; Inner value: 0x2f6402</summary>
|
||||
@ -320,7 +322,13 @@ namespace LibHac.Fs
|
||||
/// <summary>Error code: 2002-6067; Inner value: 0x2f6602</summary>
|
||||
public static Result.Base ExtensionSizeInvalid => new Result.Base(ModuleFs, 6067);
|
||||
/// <summary>Error code: 2002-6068; Inner value: 0x2f6802</summary>
|
||||
public static Result.Base ReadOldSaveDataInfoReader => new Result.Base(ModuleFs, 6068);
|
||||
public static Result.Base InvalidSaveDataInfoReader => new Result.Base(ModuleFs, 6068);
|
||||
/// <summary>Error code: 2002-6069; Inner value: 0x2f6a02</summary>
|
||||
public static Result.Base InvalidCacheStorageSize => new Result.Base(ModuleFs, 6069);
|
||||
/// <summary>Error code: 2002-6070; Inner value: 0x2f6c02</summary>
|
||||
public static Result.Base InvalidCacheStorageIndex => new Result.Base(ModuleFs, 6070);
|
||||
/// <summary>Up to 10 file systems can be committed at the same time.<br/>Error code: 2002-6071; Inner value: 0x2f6e02</summary>
|
||||
public static Result.Base InvalidCommitNameCount => new Result.Base(ModuleFs, 6071);
|
||||
|
||||
/// <summary>Error code: 2002-6080; Range: 6080-6099; Inner value: 0x2f8002</summary>
|
||||
public static Result.Base InvalidEnumValue { [MethodImpl(MethodImplOptions.AggressiveInlining)] get => new Result.Base(ModuleFs, 6080, 6099); }
|
||||
|
@ -648,7 +648,7 @@ namespace LibHac.FsService
|
||||
// Indexer has been reloaded since this info reader was created
|
||||
if (Version != Indexer.Version)
|
||||
{
|
||||
return ResultFs.ReadOldSaveDataInfoReader.Log();
|
||||
return ResultFs.InvalidSaveDataInfoReader.Log();
|
||||
}
|
||||
|
||||
// No more to iterate
|
||||
|
Loading…
x
Reference in New Issue
Block a user