GUI: Fix double space in infobox
This commit is contained in:
parent
a6027b6136
commit
6034541458
|
@ -222,7 +222,7 @@ void CPUInfoBox::disasmSelectionChanged(dsint parVA)
|
||||||
|
|
||||||
// File offset
|
// File offset
|
||||||
curOffset = DbgFunctions()->VaToFileOffset(parVA);
|
curOffset = DbgFunctions()->VaToFileOffset(parVA);
|
||||||
info += QString("#%1 ").arg(curOffset, 0, 16, QChar('0')).toUpper() + " ";
|
info += QString("#%1 ").arg(curOffset, 0, 16, QChar('0')).toUpper();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Function/label name
|
// Function/label name
|
||||||
|
|
Loading…
Reference in New Issue