mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-03 21:41:19 +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
|
@ -18,7 +18,7 @@ void gx2Export_GX2SetSwapInterval(PPCInterpreter_t* hCPU)
|
|||
gx2Log_printf("GX2SetSwapInterval(%d)\n", hCPU->gpr[3]);
|
||||
if( hCPU->gpr[3] >= 20 )
|
||||
{
|
||||
forceLog_printf("GX2SetSwapInterval() called with out of range value (%d)\n", hCPU->gpr[3]);
|
||||
cemuLog_log(LogType::Force, "GX2SetSwapInterval() called with out of range value ({})", hCPU->gpr[3]);
|
||||
}
|
||||
else
|
||||
LatteGPUState.sharedArea->swapInterval = hCPU->gpr[3];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue