Make compiler happy.

This commit is contained in:
Stephen Anthony 2020-02-03 12:55:46 -03:30
parent 2f144349fb
commit 33c118f403
1 changed files with 2 additions and 2 deletions

View File

@ -722,11 +722,11 @@ void TiaWidget::handleCommand(CommandSender* sender, int cmd, int data, int id)
break;
case kVSyncCmd:
tia.vsync(tia.vsyncAsInt() & ~0x02 | (myVSync->getState() ? 0x02 : 0x00));
tia.vsync((tia.vsyncAsInt() & ~0x02) | (myVSync->getState() ? 0x02 : 0x00));
break;
case kVBlankCmd:
tia.vblank(tia.vblankAsInt() & ~0x02 | (myVBlank->getState() ? 0x02 : 0x00));
tia.vblank((tia.vblankAsInt() & ~0x02) | (myVBlank->getState() ? 0x02 : 0x00));
break;
case DataGridWidget::kItemDataChangedCmd: