mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Remove now-redundant check
This commit is contained in:
parent
6db827093d
commit
4b67fe4947
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ bool HandleFault(uintptr_t hostAddress, void *ctx) {
|
|||
|
||||
g_lastMemoryExceptionType = type;
|
||||
|
||||
if (success && !isAtDispatch && (g_Config.bIgnoreBadMemAccess || g_ignoredAddresses.find(codePtr) != g_ignoredAddresses.end())) {
|
||||
if (success && (g_Config.bIgnoreBadMemAccess || g_ignoredAddresses.find(codePtr) != g_ignoredAddresses.end())) {
|
||||
if (!info.isMemoryWrite) {
|
||||
// It was a read. Fill the destination register with 0.
|
||||
// TODO
|
||||
|
|
Loading…
Add table
Reference in a new issue