mirror of https://github.com/stella-emu/stella.git
Running in autodetect mode should not start the disassembly.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@3102 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
068f07d919
commit
ca5f456cf9
|
@ -235,7 +235,8 @@ bool CartDebug::disassemble(bool force)
|
||||||
bool pagedirty = (PC & 0x1000) ? mySystem.isPageDirty(0x1000, 0x1FFF) :
|
bool pagedirty = (PC & 0x1000) ? mySystem.isPageDirty(0x1000, 0x1FFF) :
|
||||||
mySystem.isPageDirty(0x80, 0xFF);
|
mySystem.isPageDirty(0x80, 0xFF);
|
||||||
|
|
||||||
bool changed = (force || bankChanged || !pcfound || pagedirty);
|
bool changed = !mySystem.autodetectMode() &&
|
||||||
|
(force || bankChanged || !pcfound || pagedirty);
|
||||||
if(changed)
|
if(changed)
|
||||||
{
|
{
|
||||||
// Are we disassembling from ROM or ZP RAM?
|
// Are we disassembling from ROM or ZP RAM?
|
||||||
|
|
Loading…
Reference in New Issue