missing address in debugger status line fixed

This commit is contained in:
thrust26 2017-10-09 23:49:14 +02:00
parent 3fddc03ff6
commit f59ad788d7
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ bool Debugger::start(const string& message, int address, bool read)
ostringstream buf;
buf << message;
if(address > -1)
buf << cartDebug().getLabel(address, read);
buf << cartDebug().getLabel(address, read, 4);
myDialog->message().setText(buf.str());
return true;
}