mirror of
https://github.com/libretro/ppsspp.git
synced 2025-01-11 10:56:02 +00:00
Make some logging VERBOSE
This commit is contained in:
parent
8ada3aa8b4
commit
5fc8de091d
@ -382,14 +382,14 @@ void __TriggerInterrupt(int type, PSPInterrupt intno, int subintr)
|
||||
if (interruptsEnabled || (type & PSP_INTR_ONLY_IF_ENABLED) == 0)
|
||||
{
|
||||
intrHandlers[intno]->queueUp(subintr);
|
||||
DEBUG_LOG(HLE, "Triggering subinterrupts for interrupt %i sub %i (%i in queue)", intno, subintr, (u32)pendingInterrupts.size());
|
||||
VERBOSE_LOG(HLE, "Triggering subinterrupts for interrupt %i sub %i (%i in queue)", intno, subintr, (u32)pendingInterrupts.size());
|
||||
__TriggerRunInterrupts(type);
|
||||
}
|
||||
}
|
||||
|
||||
void __KernelReturnFromInterrupt()
|
||||
{
|
||||
DEBUG_LOG(CPU, "Left interrupt handler at %08x", currentMIPS->pc);
|
||||
VERBOSE_LOG(CPU, "Left interrupt handler at %08x", currentMIPS->pc);
|
||||
|
||||
// This is what we just ran.
|
||||
PendingInterrupt pend = pendingInterrupts.front();
|
||||
|
@ -2012,7 +2012,7 @@ bool __KernelIsDispatchEnabled()
|
||||
|
||||
int sceKernelRotateThreadReadyQueue(int priority)
|
||||
{
|
||||
DEBUG_LOG(HLE, "sceKernelRotateThreadReadyQueue(%x)", priority);
|
||||
VERBOSE_LOG(HLE, "sceKernelRotateThreadReadyQueue(%x)", priority);
|
||||
|
||||
Thread *cur = __GetCurrentThread();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user