mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 15:36:26 +00:00
use only one set of logging macros instead of two and don't use free() as a function name
This commit is contained in:
parent
afad6daa7d
commit
95f1a0e645
74 changed files with 800 additions and 793 deletions
|
|
@ -51,7 +51,7 @@ bool TRPLoader::LoadHeader(bool show)
|
|||
return false;
|
||||
|
||||
if (show)
|
||||
LOGF_NOTICE(LOADER, "TRP version: %x", m_header.trp_version);
|
||||
LOG_NOTICE(LOADER, "TRP version: %x", m_header.trp_version);
|
||||
|
||||
m_entries.clear();
|
||||
m_entries.resize(m_header.trp_files_count);
|
||||
|
|
@ -62,7 +62,7 @@ bool TRPLoader::LoadHeader(bool show)
|
|||
return false;
|
||||
|
||||
if (show)
|
||||
LOGF_NOTICE(LOADER, "TRP entry #%d: %s", m_entries[i].name);
|
||||
LOG_NOTICE(LOADER, "TRP entry #%d: %s", m_entries[i].name);
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue