From 5451d0ea5e2ac94484b23a71e7776eb3a8968273 Mon Sep 17 00:00:00 2001 From: Rajko Stojadinovic Date: Thu, 16 Aug 2018 18:04:29 +0200 Subject: [PATCH] Add some comments for fsOpenFileSystem(WithId) --- nx/include/switch/services/fs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nx/include/switch/services/fs.h b/nx/include/switch/services/fs.h index 25c00423..dfa14822 100644 --- a/nx/include/switch/services/fs.h +++ b/nx/include/switch/services/fs.h @@ -179,8 +179,8 @@ typedef enum } FsFileSystemType; /// Mount requested filesystem type from content file -Result fsOpenFileSystem(FsFileSystem* out, FsFileSystemType fsType, const char* contentPath); -Result fsOpenFileSystemWithId(FsFileSystem* out, u64 titleId, FsFileSystemType fsType, const char* contentPath); +Result fsOpenFileSystem(FsFileSystem* out, FsFileSystemType fsType, const char* contentPath); /// same as calling fsOpenFileSystemWithId with 0 as titleId +Result fsOpenFileSystemWithId(FsFileSystem* out, u64 titleId, FsFileSystemType fsType, const char* contentPath); /// works on all firmwares, titleId is ignored on 1.0.0 // IFileSystem Result fsFsCreateFile(FsFileSystem* fs, const char* path, size_t size, int flags);