Skip to content

Commit 49fe30f

Browse files
authored
coreinit/filesystem: Label HFIO/PCFS mount source type (#431)
* properly label PCFS mount type now that we've got an open-source way of booting a cat-dev, and using PCFS, we can confirm that this second mount source is indeed PCFS. * fix one space * pcfs -> hfio
1 parent 6cd63fe commit 49fe30f

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

include/coreinit/filesystem.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,9 @@ typedef enum FSMediaState
192192

193193
typedef enum FSMountSourceType
194194
{
195-
FS_MOUNT_SOURCE_SD = 0,
196-
FS_MOUNT_SOURCE_UNK = 1,
195+
FS_MOUNT_SOURCE_SD = 0,
196+
//! Devkit only API currently. Uses the PCFS channel to perform I/O operations on the attached host machine.
197+
FS_MOUNT_SOURCE_HFIO = 1,
197198
} FSMountSourceType;
198199

199200
typedef enum FSOpenFileFlags

0 commit comments

Comments
 (0)