From 9b8248227266bae0b664b9483c0feaf423d77fc0 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Sun, 18 Oct 2020 16:00:49 +0300 Subject: [PATCH] Use MMU translation debug function. --- debug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.3