From f26ef1a7a49ffd936c962a58b6fcf3992e62e90c Mon Sep 17 00:00:00 2001 From: Maschell Date: Fri, 5 Aug 2022 23:22:58 +0200 Subject: [PATCH] coreinit: Fix order of arguments for FSOpenFileExAsync --- include/coreinit/filesystem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/coreinit/filesystem.h b/include/coreinit/filesystem.h index 0f336a1a..53185220 100644 --- a/include/coreinit/filesystem.h +++ b/include/coreinit/filesystem.h @@ -591,10 +591,10 @@ FSOpenFileExAsync(FSClient *client, FSCmdBlock *block, const char *path, const char *mode, - FSFileHandle *outHandle, FSMode createMode, FSOpenFileFlags openFlag, uint32_t preallocSize, + FSFileHandle *handle, FSErrorFlag errorMask, FSAsyncData *asyncData);