changeset 15895:ca6b6c494ae8 draft

(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.
author frosch <frosch@openttd.org>
date Fri, 20 Aug 2010 12:13:27 +0000
parents 9a746a18b3d5
children 2338e84ca812
files src/gfx.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/gfx.cpp
+++ b/src/gfx.cpp
@@ -263,7 +263,7 @@
 	 *            ....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);