Debugger: fix Ramworks3's bank display number (fixes #1393)

This commit is contained in:
tomcw 2025-04-05 09:27:50 +01:00
parent c3fb55d376
commit a4fa3b5cb5

View File

@ -2606,7 +2606,7 @@ void _DrawSoftSwitchLanguageCardBank( RECT & rect, const int iBankDisplay, int b
PrintTextCursorX( sMemType, rect );
DebuggerSetColorFG( DebuggerGetColor( FG_INFO_ADDRESS )); // orange
PrintTextCursorX( ByteToHexStr( iActiveBank & 0x7F ).c_str(), rect );
PrintTextCursorX( ByteToHexStr( iActiveBank & 0xFF ).c_str(), rect );
}
else
{