mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-01 12:08:12 +00:00
cellPamf: Add missing error code
This commit is contained in:
parent
751775a04c
commit
0b628cb50e
@ -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_UNKNOWN_STREAM);
|
||||
STR_CASE(CELL_PAMF_ERROR_EP_NOT_FOUND);
|
||||
STR_CASE(CELL_PAMF_ERROR_NOT_AVAILABLE);
|
||||
}
|
||||
|
||||
return unknown;
|
||||
|
@ -12,6 +12,7 @@ enum CellPamfError : u32
|
||||
CELL_PAMF_ERROR_UNSUPPORTED_VERSION = 0x80610505,
|
||||
CELL_PAMF_ERROR_UNKNOWN_STREAM = 0x80610506,
|
||||
CELL_PAMF_ERROR_EP_NOT_FOUND = 0x80610507,
|
||||
CELL_PAMF_ERROR_NOT_AVAILABLE = 0x80610508,
|
||||
};
|
||||
|
||||
// PamfReaderInitialize Attribute Flags
|
||||
|
Loading…
Reference in New Issue
Block a user