File diff r7848:705b74bab657 → r7849:cfd99cb69695
src/viewport.cpp
Show inline comments
 
@@ -23,12 +23,13 @@
 
#include "waypoint.h"
 
#include "variables.h"
 
#include "train.h"
 
#include "roadveh.h"
 
#include "vehicle_gui.h"
 
#include "blitter/factory.hpp"
 
#include "transparency.h"
 

	
 
#define VIEWPORT_DRAW_MEM (65536 * 2)
 

	
 
ZoomLevel _saved_scrollpos_zoom;
 

	
 
/* XXX - maximum viewports is maximum windows - 2 (main toolbar + status bar) */
 
@@ -1480,25 +1481,25 @@ static void ViewportDrawStrings(DrawPixe
 
				bottom -= 6;
 
				w -= 3;
 
			}
 

	
 
		/* Draw the rectangle if 'tranparent station signs' is off,
 
		 * or if we are drawing a general text sign (STR_2806) */
 
			if (!HASBIT(_transparent_opt, TO_SIGNS) || ss->string == STR_2806) {
 
			if (!IsTransparencySet(TO_SIGNS) || ss->string == STR_2806) {
 
				DrawFrameRect(
 
					x, y, x + w, bottom, ss->color,
 
					HASBIT(_transparent_opt, TO_SIGNS) ? FR_TRANSPARENT : FR_NONE
 
					IsTransparencySet(TO_SIGNS) ? FR_TRANSPARENT : FR_NONE
 
				);
 
			}
 
		}
 

	
 
		SetDParam(0, ss->params[0]);
 
		SetDParam(1, ss->params[1]);
 
		/* if we didn't draw a rectangle, or if transparant building is on,
 
		 * draw the text in the color the rectangle would have */
 
		if (HASBIT(_transparent_opt, TO_SIGNS) && ss->string != STR_2806 && ss->width != 0) {
 
		if (IsTransparencySet(TO_SIGNS) && ss->string != STR_2806 && ss->width != 0) {
 
			/* Real colors need the IS_PALETTE_COLOR flag
 
			 * otherwise colors from _string_colormap are assumed. */
 
			colour = _colour_gradient[ss->color][6] | IS_PALETTE_COLOR;
 
		} else {
 
			colour = TC_BLACK;
 
		}