Changeset - r5643:f4144f9d438e
[Not reviewed]
master
0 2 0
Darkvater - 17 years ago 2007-01-13 15:55:22
darkvater@openttd.org
(svn r8102) -Cleanup: Remove unreachable code (r8096), useless cast
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/newgrf_gui.cpp
Show inline comments
 
@@ -50,7 +50,7 @@ static void ShowNewGRFInfo(const GRFConf
 
	}
 

	
 
	/* Prepare and draw GRF ID */
 
	snprintf(buff, lengthof(buff), "%08X", (uint32)BSWAP32(c->grfid));
 
	snprintf(buff, lengthof(buff), "%08X", BSWAP32(c->grfid));
 
	SetDParamStr(0, buff);
 
	y += DrawStringMultiLine(x, y, STR_NEWGRF_GRF_ID, w);
 

	
src/road_cmd.cpp
Show inline comments
 
@@ -574,7 +574,7 @@ static int32 ClearTile_Road(TileIndex ti
 
				return DoCommand(tile, b, 0, flags, CMD_REMOVE_ROAD);
 
			}
 
			return_cmd_error(STR_1801_MUST_REMOVE_ROAD_FIRST);
 
		} break;
 
		}
 
#undef M
 

	
 
		case ROAD_TILE_CROSSING: {
0 comments (0 inline, 0 general)