From 11dd5ba4853008f1aebd08d634512f626cd9bcfc Mon Sep 17 00:00:00 2001 From: MikeIsAStar <99037623+MikeIsAStar@users.noreply.github.com> Date: Fri, 8 Mar 2024 16:26:00 -0500 Subject: [PATCH] MMU: Remove erroneous continue statement The updated behavior more closely emulates the functionality of physical hardware. --- Source/Core/Core/PowerPC/MMU.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/MMU.cpp b/Source/Core/Core/PowerPC/MMU.cpp index c43f58ab86..8e8282ed08 100644 --- a/Source/Core/Core/PowerPC/MMU.cpp +++ b/Source/Core/Core/PowerPC/MMU.cpp @@ -1546,7 +1546,6 @@ void MMU::UpdateBATs(BatTable& bat_table, u32 base_spr) // (input & ~BL_mask) == BEPI. For now, assume it's // implemented this way for invalid BATs as well. WARN_LOG_FMT(POWERPC, "Bad BAT setup: BEPI overlaps BL"); - continue; } if ((batl.BRPN & batu.BL) != 0) {