1
0
Fork 0

(svn r20722) -Fix (r20719): signed/unsigned side effect makes a small negative value become a big positive value

release/1.1
glx 2010-09-03 12:52:09 +00:00
parent 29eae4a378
commit 72bd89b900
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ struct StatusBarWindow : Window {
if (this->reminder_timeout > 0) {
Dimension icon_size = GetSpriteSize(SPR_UNREAD_NEWS);
DrawSprite(SPR_UNREAD_NEWS, PAL_NONE, r.right - WD_FRAMERECT_RIGHT - icon_size.width, r.top + WD_FRAMERECT_TOP + (FONT_HEIGHT_NORMAL - icon_size.height) / 2);
DrawSprite(SPR_UNREAD_NEWS, PAL_NONE, r.right - WD_FRAMERECT_RIGHT - icon_size.width, r.top + WD_FRAMERECT_TOP + (int)(FONT_HEIGHT_NORMAL - icon_size.height) / 2);
}
break;
}