From dbe20e7257de847cee173318399c79773bd5dbc2 Mon Sep 17 00:00:00 2001 From: "Adam Polkosnik [fun]" Date: Thu, 26 Feb 2026 22:42:19 -0500 Subject: [PATCH] Fix condition to check tt1_030 for CACHE_DISABLE_MMU It looks like a copy&paste error from the same check for tt0 --- cpummu30.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpummu30.cpp b/cpummu30.cpp index a1450c30..5f613e77 100644 --- a/cpummu30.cpp +++ b/cpummu30.cpp @@ -731,7 +731,7 @@ static int mmu030_match_ttr(uaecptr addr, uae_u32 fc, bool write) } tt1 = mmu030_do_match_ttr(tt1_030, mmu030.transparent.tt1, addr, fc, write); if (tt1&TT_OK_MATCH) { - if (tt0_030&TT_CI) + if (tt1_030&TT_CI) mmu030_cache_state = CACHE_DISABLE_MMU; } -- 2.47.3