Fixed trailing space in Debugger class file.

This commit is contained in:
Stephen Anthony 2017-10-09 20:31:29 -02:30
parent 7c679fda31
commit 29eb553a0c
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, 4);
buf << cartDebug().getLabel(address, read, 4);
myDialog->message().setText(buf.str());
return true;
}