mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-06 06:51:18 +12:00
Migrate force_log_printf to new logging (#714)
This commit is contained in:
parent
072c18a6e3
commit
4be57f4896
108 changed files with 401 additions and 399 deletions
|
@ -89,12 +89,12 @@ namespace nn
|
|||
nnIdbeHeader_t* idbeHeader = (nnIdbeHeader_t*)iconInput;
|
||||
if (idbeHeader->formatVersion != 0)
|
||||
{
|
||||
forceLog_printf("idbe header version unknown (%d)", (sint32)idbeHeader->formatVersion);
|
||||
cemuLog_log(LogType::Force, "idbe header version unknown ({})", (sint32)idbeHeader->formatVersion);
|
||||
return false;
|
||||
}
|
||||
if (idbeHeader->keyIndex >= 4)
|
||||
{
|
||||
forceLog_printf("idbe header key count invalid (%d)", (sint32)idbeHeader->keyIndex);
|
||||
cemuLog_log(LogType::Force, "idbe header key count invalid ({})", (sint32)idbeHeader->keyIndex);
|
||||
return false;
|
||||
}
|
||||
// decrypt data
|
||||
|
@ -175,4 +175,4 @@ namespace nn
|
|||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue