mirror of https://github.com/OpenTTD/OpenTTD
(svn r27020) -Cleanup: some coding style consistency improvements (mostly spaces)
parent
155114aa98
commit
d534c80e94
|
@ -101,4 +101,4 @@ protected:
|
||||||
void RefreshLinks(const Order *cur, const Order *next, uint8 flags, uint num_hops = 0);
|
void RefreshLinks(const Order *cur, const Order *next, uint8 flags, uint num_hops = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // REFRESH_H
|
#endif /* REFRESH_H */
|
||||||
|
|
|
@ -171,7 +171,7 @@ Money HouseSpec::GetRemovalCost() const
|
||||||
return (_price[PR_CLEAR_HOUSE] * this->removal_cost) >> 8;
|
return (_price[PR_CLEAR_HOUSE] * this->removal_cost) >> 8;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Local
|
/* Local */
|
||||||
static int _grow_town_result;
|
static int _grow_town_result;
|
||||||
|
|
||||||
/* Describe the possible states */
|
/* Describe the possible states */
|
||||||
|
|
|
@ -1439,7 +1439,7 @@ void Train::UpdateDeltaXY(Direction direction)
|
||||||
if (!IsDiagonalDirection(direction)) {
|
if (!IsDiagonalDirection(direction)) {
|
||||||
static const int _sign_table[] =
|
static const int _sign_table[] =
|
||||||
{
|
{
|
||||||
// x, y
|
/* x, y */
|
||||||
-1, -1, // DIR_N
|
-1, -1, // DIR_N
|
||||||
-1, 1, // DIR_E
|
-1, 1, // DIR_E
|
||||||
1, 1, // DIR_S
|
1, 1, // DIR_S
|
||||||
|
|
|
@ -34,4 +34,4 @@ enum QueryEditSignWidgets {
|
||||||
WID_QES_NEXT, ///< Next button.
|
WID_QES_NEXT, ///< Next button.
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* */
|
#endif /* SIGN_WIDGET_H */
|
||||||
|
|
Loading…
Reference in New Issue