Fixed gcc warning.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1869 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2009-09-02 00:12:29 +00:00
parent a7da944b36
commit 383bce947b
1 changed files with 1 additions and 1 deletions

View File

@ -149,6 +149,6 @@ void TiaOutputWidget::drawWidget(bool hilite)
// Show electron beam position
if(visible && scanx < width && scany+2u < height)
{
s.fillRect(_x+scanx<<1, _y+scany, 3, 3, kBtnTextColor);
s.fillRect(_x+(scanx<<1), _y+scany, 3, 3, kBtnTextColor);
}
}