diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-05-25 06:04:55 +0200 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-05-25 06:06:00 +0200 |
commit | a5810d61dab191b5a8e3cbb9de9fc9a8bad88826 (patch) | |
tree | 5fcc198c486b7e1181dc1a63e32902b49d8a7b28 | |
parent | Common: Clean up meta-template logic in BitField (diff) | |
download | yuzu-a5810d61dab191b5a8e3cbb9de9fc9a8bad88826.tar yuzu-a5810d61dab191b5a8e3cbb9de9fc9a8bad88826.tar.gz yuzu-a5810d61dab191b5a8e3cbb9de9fc9a8bad88826.tar.bz2 yuzu-a5810d61dab191b5a8e3cbb9de9fc9a8bad88826.tar.lz yuzu-a5810d61dab191b5a8e3cbb9de9fc9a8bad88826.tar.xz yuzu-a5810d61dab191b5a8e3cbb9de9fc9a8bad88826.tar.zst yuzu-a5810d61dab191b5a8e3cbb9de9fc9a8bad88826.zip |
-rw-r--r-- | src/core/hle/service/fs/archive.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/hle/service/fs/archive.cpp b/src/core/hle/service/fs/archive.cpp index 5c1235f8b..632712f2c 100644 --- a/src/core/hle/service/fs/archive.cpp +++ b/src/core/hle/service/fs/archive.cpp @@ -51,11 +51,6 @@ static constexpr Kernel::Handle INVALID_HANDLE{}; namespace Service { namespace FS { -// TODO: Verify code -/// Returned when a function is passed an invalid handle. -const ResultCode ERR_INVALID_HANDLE(ErrorDescription::InvalidHandle, ErrorModule::FS, - ErrorSummary::InvalidArgument, ErrorLevel::Permanent); - // Command to access archive file enum class FileCommand : u32 { Dummy1 = 0x000100C6, |