From 2b69ec6cf9ceaf567f041ab37fecb3128a66e2b4 Mon Sep 17 00:00:00 2001 From: Alex Barney Date: Sun, 17 Sep 2023 19:28:24 -0700 Subject: [PATCH] Diff fssrv::storage with FS 16 --- src/LibHac/FsSrv/Storage/GameCardService.cs | 2 +- src/LibHac/FsSrv/Storage/MmcService.cs | 4 ++-- src/LibHac/FsSrv/Storage/SdCardService.cs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/LibHac/FsSrv/Storage/GameCardService.cs b/src/LibHac/FsSrv/Storage/GameCardService.cs index 861051da..7173eaf9 100644 --- a/src/LibHac/FsSrv/Storage/GameCardService.cs +++ b/src/LibHac/FsSrv/Storage/GameCardService.cs @@ -36,7 +36,7 @@ internal struct GameCardServiceGlobals : IDisposable /// /// Contains functions for interacting with the game card storage device. /// -/// Based on nnSdk 14.3.0 (FS 14.1.0) +/// Based on nnSdk 16.2.0 (FS 16.0.0) internal static class GameCardService { private static ulong MakeAttributeId(OpenGameCardAttribute attribute) => (ulong)attribute; diff --git a/src/LibHac/FsSrv/Storage/MmcService.cs b/src/LibHac/FsSrv/Storage/MmcService.cs index 71557ba5..e51c8408 100644 --- a/src/LibHac/FsSrv/Storage/MmcService.cs +++ b/src/LibHac/FsSrv/Storage/MmcService.cs @@ -15,7 +15,7 @@ namespace LibHac.FsSrv.Storage; /// /// Contains global MMC-storage-related functions. /// -/// Based on nnSdk 14.3.0 (FS 14.1.0) +/// Based on nnSdk 16.2.0 (FS 16.0.0) public static class MmcServiceGlobalMethods { public static Result GetAndClearPatrolReadAllocateBufferCount(this FileSystemServer fsSrv, out long successCount, @@ -28,7 +28,7 @@ public static class MmcServiceGlobalMethods /// /// Contains functions for interacting with the MMC storage device. /// -/// Based on nnSdk 14.3.0 (FS 14.1.0) +/// Based on nnSdk 16.2.0 (FS 16.0.0) internal static class MmcService { private static int MakeOperationId(MmcManagerOperationIdValue operation) => (int)operation; diff --git a/src/LibHac/FsSrv/Storage/SdCardService.cs b/src/LibHac/FsSrv/Storage/SdCardService.cs index 1344fc7a..bb0019d5 100644 --- a/src/LibHac/FsSrv/Storage/SdCardService.cs +++ b/src/LibHac/FsSrv/Storage/SdCardService.cs @@ -17,7 +17,7 @@ namespace LibHac.FsSrv.Storage; /// /// Contains functions for interacting with the SD card storage device. /// -/// Based on nnSdk 14.3.0 (FS 14.1.0) +/// Based on nnSdk 16.2.0 (FS 16.0.0) internal static class SdCardService { private static int MakeOperationId(SdCardManagerOperationIdValue operation) => (int)operation;