correct silencing fix

This commit is contained in:
thrust26 2019-12-19 19:54:09 +01:00
parent 2b0204512e
commit 1b14ed21a9
1 changed files with 1 additions and 1 deletions

View File

@ -682,7 +682,7 @@ void Console::changeVerticalCenter(int direction)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void Console::updateVcenter(Int32 vcenter)
{
if ((vcenter > TIAConstants::maxVcenter) | (vcenter < TIAConstants::minVcenter))
if ((vcenter > TIAConstants::maxVcenter) || (vcenter < TIAConstants::minVcenter))
return;
if (vcenter != myTIA->vcenter()) myTIA->setVcenter(vcenter);