force sign for V-Center display

This commit is contained in:
thrust26 2020-01-11 15:46:53 +01:00
parent 4f9d554a5f
commit a530bdcfb7
1 changed files with 1 additions and 1 deletions

View File

@ -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());
}