cellPamf: Add missing error code

This commit is contained in:
Megamouse 2023-05-05 15:58:39 +02:00
parent 751775a04c
commit 0b628cb50e
2 changed files with 2 additions and 0 deletions

View File

@ -28,6 +28,7 @@ void fmt_class_string<CellPamfError>::format(std::string& out, u64 arg)
STR_CASE(CELL_PAMF_ERROR_UNSUPPORTED_VERSION); STR_CASE(CELL_PAMF_ERROR_UNSUPPORTED_VERSION);
STR_CASE(CELL_PAMF_ERROR_UNKNOWN_STREAM); STR_CASE(CELL_PAMF_ERROR_UNKNOWN_STREAM);
STR_CASE(CELL_PAMF_ERROR_EP_NOT_FOUND); STR_CASE(CELL_PAMF_ERROR_EP_NOT_FOUND);
STR_CASE(CELL_PAMF_ERROR_NOT_AVAILABLE);
} }
return unknown; return unknown;

View File

@ -12,6 +12,7 @@ enum CellPamfError : u32
CELL_PAMF_ERROR_UNSUPPORTED_VERSION = 0x80610505, CELL_PAMF_ERROR_UNSUPPORTED_VERSION = 0x80610505,
CELL_PAMF_ERROR_UNKNOWN_STREAM = 0x80610506, CELL_PAMF_ERROR_UNKNOWN_STREAM = 0x80610506,
CELL_PAMF_ERROR_EP_NOT_FOUND = 0x80610507, CELL_PAMF_ERROR_EP_NOT_FOUND = 0x80610507,
CELL_PAMF_ERROR_NOT_AVAILABLE = 0x80610508,
}; };
// PamfReaderInitialize Attribute Flags // PamfReaderInitialize Attribute Flags