From: Adam Polkosnik [fun] Date: Fri, 27 Feb 2026 03:42:19 +0000 (-0500) Subject: Fix condition to check tt1_030 for CACHE_DISABLE_MMU X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=refs%2Fremotes%2Fupstream%2Fdevelopment;p=francis%2Fwinuae.git Fix condition to check tt1_030 for CACHE_DISABLE_MMU It looks like a copy&paste error from the same check for tt0 --- 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; }