(svn r13907) -Codechange: Replace a number with Colours enum on DrawFrameRect usage

This commit is contained in:
belugas
2008-08-01 03:43:53 +00:00
parent 325ef293fd
commit 69671d3aef
8 changed files with 10 additions and 10 deletions

View File

@@ -1691,7 +1691,7 @@ struct NetworkJoinStatusWindow : Window {
}
/* Draw nice progress bar :) */
DrawFrameRect(20, 18, (int)((this->width - 20) * progress / 100), 28, 10, FR_NONE);
DrawFrameRect(20, 18, (int)((this->width - 20) * progress / 100), 28, COLOUR_MAUVE, FR_NONE);
}
virtual void OnClick(Point pt, int widget)