From: Toni Wilen Date: Sun, 18 Oct 2020 13:00:49 +0000 (+0300) Subject: Use MMU translation debug function. X-Git-Tag: 4900~279 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=9b8248227266bae0b664b9483c0feaf423d77fc0;p=francis%2Fwinuae.git Use MMU translation debug function. --- diff --git a/debug.cpp b/debug.cpp index d8fcf9fc..f6ecd759 100644 --- a/debug.cpp +++ b/debug.cpp @@ -4242,7 +4242,7 @@ static uaecptr get_base (const uae_char *name, int offset) if (!b || !b->check (v2, 20)) goto fail; if ((b->flags & ABFLAG_ROM) || (b->flags & ABFLAG_RAM) || (b->flags & ABFLAG_ROMIN)) { - p = b->xlateaddr (v2); + p = get_real_address_debug(v2); if (!memcmp (p, name, strlen (name) + 1)) return v; }