don't disassemble unnecessarily many instructions in the debugger
fixes fc92d3c63e
This commit is contained in:
parent
7b904b1715
commit
238e7bca1e
|
@ -54,11 +54,9 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
private void Disassemble()
|
||||
{
|
||||
int lineCount = DisassemblerView.RowCount * 6 + 2;
|
||||
|
||||
_disassemblyLines.Clear();
|
||||
uint currentAddress = _currentDisassemblerAddress;
|
||||
for (int i = 0; i <= lineCount; ++i)
|
||||
for (int i = 0; i <= DisassemblerView.RowCount; ++i)
|
||||
{
|
||||
if (currentAddress >= BusMaxValue)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue