mirror of https://github.com/stella-emu/stella.git
force sign for V-Center display
This commit is contained in:
parent
4f9d554a5f
commit
a530bdcfb7
|
@ -670,7 +670,7 @@ void Console::changeVerticalCenter(int direction)
|
|||
if (vcenter != myTIA->vcenter()) myTIA->setVcenter(vcenter);
|
||||
|
||||
ss.str("");
|
||||
ss << "V-Center " << vcenter;
|
||||
ss << "V-Center " << (vcenter > 0 ? "+" : "") << vcenter;
|
||||
|
||||
myOSystem.frameBuffer().showMessage(ss.str());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue