From 37fb660c7f963cde03f4d45166cd1a837431bb89 Mon Sep 17 00:00:00 2001 From: wheremyfoodat Date: Sun, 14 May 2023 18:23:54 +0300 Subject: [PATCH] [FS] Added error codes --- include/fs/archive_base.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/fs/archive_base.hpp b/include/fs/archive_base.hpp index 7565e4aa..9af90551 100644 --- a/include/fs/archive_base.hpp +++ b/include/fs/archive_base.hpp @@ -133,6 +133,8 @@ enum class FSResult : u32 { AlreadyExists = 0x82044BE, FileTooLarge = 0x86044D2, FileNotFound = 0xC8804470, + NotFoundInvalid = 0xC8A04478, // Also a not found error code used here and there in the FS module. + NotFormatted = 0xC8A04554, // Trying to access an archive that needs formatting and has not been formatted UnexpectedFileOrDir = 0xE0C04702 };