mirror of https://github.com/stella-emu/stella.git
fix CPU destination display
This commit is contained in:
parent
4fabd94dd3
commit
c2a8839b1a
|
@ -327,7 +327,7 @@ void CpuWidget::loadConfig()
|
|||
state.srcY != oldstate.srcY);
|
||||
|
||||
const string& dest = state.dest < 0 ? "" : cart.getLabel(state.dest, false);
|
||||
myCpuDataDest->setText((srcY != EmptyString ? dest : Common::Base::toString(state.dest)),
|
||||
myCpuDataDest->setText((dest != EmptyString ? dest : Common::Base::toString(state.dest)),
|
||||
state.dest != oldstate.dest);
|
||||
|
||||
// Update the PS register booleans
|
||||
|
|
Loading…
Reference in New Issue