CPU: Log on break exception without PCDrv

This commit is contained in:
Stenzek 2025-07-20 21:09:58 +10:00
parent a5b46f7676
commit cdd054702c
No known key found for this signature in database

View File

@ -421,6 +421,10 @@ void CPU::RaiseBreakException(u32 CAUSE_bits, u32 EPC, u32 instruction_bits)
return;
}
}
else
{
WARNING_LOG("PCDrv is not enabled, break HLE will not be executed.");
}
// normal exception
RaiseException(CAUSE_bits, EPC, GetExceptionVector());