From 165932fbde0b5a1975891fafbdb5d84e048412c1 Mon Sep 17 00:00:00 2001 From: yellows8 Date: Sat, 12 May 2018 11:56:04 -0400 Subject: [PATCH] Added a comment for fsdevCommitDevice(). --- nx/include/switch/runtime/devices/fs_dev.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx/include/switch/runtime/devices/fs_dev.h b/nx/include/switch/runtime/devices/fs_dev.h index c4f9d548..ac37e977 100644 --- a/nx/include/switch/runtime/devices/fs_dev.h +++ b/nx/include/switch/runtime/devices/fs_dev.h @@ -32,7 +32,7 @@ int fsdevMountDevice(const char *name, FsFileSystem fs); /// Unmounts the specified device. int fsdevUnmountDevice(const char *name); -/// Uses fsFsCommit() with the specified device. This must be used after any savedata-write operations(not just file-write). +/// Uses fsFsCommit() with the specified device. This must be used after any savedata-write operations(not just file-write). This should be used after each file-close where file-writing was done. /// This is not used automatically at device unmount. Result fsdevCommitDevice(const char *name);