Correct Directory EntryType to be u8 rather than u32

This commit is contained in:
Billy Laws 2022-06-02 00:01:43 +01:00
parent 0c11d9e294
commit 3518e04a18

View File

@ -11,7 +11,7 @@ namespace skyline::vfs {
*/
class Directory {
public:
enum class EntryType : u32 {
enum class EntryType : u8 {
Directory = 0x0,
File = 0x1,
};