mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-10 00:41:19 +12:00
Logging migration (forceLogDebug_printf) (#780)
* script changes - no arguments * script changes with 2 arguments * script changes with > 2 arguments * script conversions with 1 argument - pt. 1 * script conversions with 1 argument - pt. 2 * script conversions with 1 argument - pt. 3 * script conversions with 1 argument - pt. 4 * script conversions with 1 argument - pt. 5 Pointer format hunting * Fixed pointer format * script conversions with 1 argument - final * fixed conversion in non utf-8 file * fixed conversion with capital letter * actually fixed conversion with capital letter * fixed another capital lettering issue * Added conversions with LR removed * removed LR from logs * Converted logs that previously contained LR * converted log that originally specified string length * fixed log with commas in main text * fixed multi-line log * Fixed more logs with commas in main text * Fixed unformatted pointer * added conversion with float value * converted lines with double parameters * converted missed line * corrected argument formatting Co-authored-by: Crementif <26669564+Crementif@users.noreply.github.com> * Fixed misspellings of "unhandled" unhandeled -> unhandled Co-authored-by: Crementif <26669564+Crementif@users.noreply.github.com> --------- Co-authored-by: Crementif <26669564+Crementif@users.noreply.github.com>
This commit is contained in:
parent
f48ad6a1ca
commit
caa57a3cfd
98 changed files with 469 additions and 469 deletions
|
@ -88,12 +88,12 @@ void dmaeExport_DMAESemaphore(PPCInterpreter_t* hCPU)
|
|||
}
|
||||
else if (actionType == 0) // wait
|
||||
{
|
||||
forceLogDebug_printf("DMAESemaphore: Unsupported wait operation");
|
||||
cemuLog_logDebug(LogType::Force, "DMAESemaphore: Unsupported wait operation");
|
||||
semaphore->fetch_sub(1);
|
||||
}
|
||||
else
|
||||
{
|
||||
forceLogDebug_printf("DMAESemaphore unknown action type %d", actionType);
|
||||
cemuLog_logDebug(LogType::Force, "DMAESemaphore unknown action type {}", actionType);
|
||||
cemu_assert_debug(false);
|
||||
}
|
||||
|
||||
|
@ -116,4 +116,4 @@ void dmae_load()
|
|||
osLib_addFunction("dmae", "DMAEWaitDone", dmaeExport_DMAEWaitDone);
|
||||
osLib_addFunction("dmae", "DMAESemaphore", dmaeExport_DMAESemaphore);
|
||||
osLib_addFunction("dmae", "DMAEGetRetiredTimeStamp", dmaeExport_DMAEGetRetiredTimeStamp);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue