mirror of https://github.com/stella-emu/stella.git
missing address in debugger status line fixed
This commit is contained in:
parent
3fddc03ff6
commit
f59ad788d7
|
@ -177,7 +177,7 @@ bool Debugger::start(const string& message, int address, bool read)
|
||||||
ostringstream buf;
|
ostringstream buf;
|
||||||
buf << message;
|
buf << message;
|
||||||
if(address > -1)
|
if(address > -1)
|
||||||
buf << cartDebug().getLabel(address, read);
|
buf << cartDebug().getLabel(address, read, 4);
|
||||||
myDialog->message().setText(buf.str());
|
myDialog->message().setText(buf.str());
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue