From d37a66d7fbe2bf92a26ae54a63f3313d7fae8b70 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Mon, 27 Sep 2021 17:57:58 +0300 Subject: [PATCH] Disassembler BT->BRA fix --- disasm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disasm.cpp b/disasm.cpp index 6dc305d9..41073902 100644 --- a/disasm.cpp +++ b/disasm.cpp @@ -1959,7 +1959,7 @@ uae_u32 m68k_disasm_2(TCHAR *buf, int bufsize, uaecptr pc, uae_u16 *bufpc, int b } else { _tcsncpy(ccpt, ccnames[dp->cc], 2); if (dp->cc == 0) { - _tcscpy(ccpt, _T("BRA")); + _tcscpy(ccpt, _T("RA")); // BT -> BRA } } } -- 2.47.3