File diff r11081:725ce4237987 → r11082:09fb79759019
src/viewport.cpp
Show inline comments
 
@@ -1418,7 +1418,7 @@ static void ViewportDrawStrings(DrawPixe
 

	
 
	const StringSpriteToDraw *ssend = sstdv->End();
 
	for (const StringSpriteToDraw *ss = sstdv->Begin(); ss != ssend; ++ss) {
 
		uint16 colour;
 
		TextColour colour;
 

	
 
		if (ss->width != 0) {
 
			/* Do not draw signs nor station names if they are set invisible */
 
@@ -1453,7 +1453,7 @@ static void ViewportDrawStrings(DrawPixe
 
		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;
 
			colour = (TextColour)_colour_gradient[ss->color][6] | IS_PALETTE_COLOR;
 
		} else {
 
			colour = TC_BLACK;
 
		}