From: Toni Wilen Date: Mon, 27 Sep 2021 14:57:58 +0000 (+0300) Subject: Disassembler BT->BRA fix X-Git-Tag: 4900~64 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=d37a66d7fbe2bf92a26ae54a63f3313d7fae8b70;p=francis%2Fwinuae.git Disassembler BT->BRA fix --- 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 } } }