Changeset - r16019:6b493f346740
[Not reviewed]
master
0 1 0
glx - 14 years ago 2010-09-03 12:52:09
glx@openttd.org
(svn r20722) -Fix (r20719): signed/unsigned side effect makes a small negative value become a big positive value
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/statusbar_gui.cpp
Show inline comments
 
@@ -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;
 
		}
0 comments (0 inline, 0 general)