mirror of
https://github.com/switchbrew/libnx.git
synced 2025-09-25 14:33:19 +02:00
use correct names for fsOpenGameCardPartition / FsGameCardPartitionRaw.
This commit is contained in:
parent
47e445e088
commit
0eb0c379f4
@ -262,9 +262,9 @@ typedef enum {
|
||||
} FsGameCardPartition;
|
||||
|
||||
typedef enum {
|
||||
FsGameCardStoragePartition_Normal = 0,
|
||||
FsGameCardStoragePartition_Secure = 1,
|
||||
} FsGameCardStoragePartition;
|
||||
FsGameCardPartitionRaw_Normal = 0,
|
||||
FsGameCardPartitionRaw_Secure = 1,
|
||||
} FsGameCardPartitionRaw;
|
||||
|
||||
typedef struct {
|
||||
u32 value;
|
||||
@ -545,7 +545,7 @@ Result fsOpenDataStorageByProgramId(FsStorage *out, u64 program_id); /// <[3.0.0
|
||||
Result fsOpenDataStorageByDataId(FsStorage* out, u64 dataId, NcmStorageId storageId);
|
||||
Result fsOpenPatchDataStorageByCurrentProcess(FsStorage* out);
|
||||
|
||||
Result fsOpenGameCardStorage(FsStorage* out, const FsGameCardHandle* handle, FsGameCardStoragePartition partition);
|
||||
Result fsOpenGameCardPartition(FsStorage* out, const FsGameCardHandle* handle, FsGameCardPartitionRaw partition);
|
||||
|
||||
Result fsOpenDeviceOperator(FsDeviceOperator* out);
|
||||
Result fsOpenSdCardDetectionEventNotifier(FsEventNotifier* out);
|
||||
|
@ -538,7 +538,7 @@ Result fsOpenPatchDataStorageByCurrentProcess(FsStorage* out) {
|
||||
return _fsCmdGetSession(&g_fsSrv, &out->s, 203);
|
||||
}
|
||||
|
||||
Result fsOpenGameCardStorage(FsStorage* out, const FsGameCardHandle* handle, FsGameCardStoragePartition partition) {
|
||||
Result fsOpenGameCardPartition(FsStorage* out, const FsGameCardHandle* handle, FsGameCardPartitionRaw partition) {
|
||||
const struct {
|
||||
FsGameCardHandle handle;
|
||||
u32 partition;
|
||||
|
Loading…
Reference in New Issue
Block a user