Changeset - r15885:866e351652fa
[Not reviewed]
master
0 1 0
frosch - 14 years ago 2010-08-20 12:13:27
frosch@openttd.org
(svn r20578) -Fix [FS#4051]: Draw bounding boxes using white instead of pure white, so they are recoloured to grey in coloured newspaper instead of blue.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/gfx.cpp
Show inline comments
 
@@ -263,7 +263,7 @@ void DrawBox(int x, int y, int dx1, int 
 
	 *            ....V.
 
	 */
 

	
 
	static const byte colour = 255;
 
	static const byte colour = 15;
 

	
 
	GfxDrawLineUnscaled(x, y, x + dx1, y + dy1, colour);
 
	GfxDrawLineUnscaled(x, y, x + dx2, y + dy2, colour);
0 comments (0 inline, 0 general)