mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
Merge pull request #712 from raven02/patch-17
EDAT: list the edat files name
This commit is contained in:
commit
e56c6914d2
2 changed files with 2 additions and 2 deletions
|
@ -522,7 +522,7 @@ bool extract_data(rFile *input, rFile *output, const char* input_file_name, unsi
|
|||
unsigned char npd_magic[4] = {0x4E, 0x50, 0x44, 0x00}; //NPD0
|
||||
if(memcmp(NPD->magic, npd_magic, 4))
|
||||
{
|
||||
LOG_ERROR(LOADER, "EDAT: File has invalid NPD header.");
|
||||
LOG_ERROR(LOADER, "EDAT: %s has invalid NPD header or already decrypted.", input_file_name);
|
||||
delete NPD;
|
||||
delete EDAT;
|
||||
return 1;
|
||||
|
|
|
@ -1133,7 +1133,7 @@ int cellGcmSetTile(u8 index, u8 location, u32 offset, u32 size, u32 pitch, u8 co
|
|||
|
||||
if(comp)
|
||||
{
|
||||
cellGcmSys->Error("cellGcmSetTile: bad comp! (%d)", comp);
|
||||
cellGcmSys->Error("cellGcmSetTile: bad compression mode! (%d)", comp);
|
||||
}
|
||||
|
||||
auto& tile = Emu.GetGSManager().GetRender().m_tiles[index];
|
||||
|
|
Loading…
Add table
Reference in a new issue