Mercurial > hg > openttd
comparison src/vehicle.cpp @ 6492:e0b6c88a6650 draft
(svn r9673) -Cleanup: remove spaces before tabs and replace non-indenting tabs with spaces.
author | rubidium <rubidium@openttd.org> |
---|---|
date | Wed, 18 Apr 2007 22:41:53 +0000 |
parents | 696f0e1b046e |
children | ad8ea1f30c99 |
comparison
equal
deleted
inserted
replaced
6491:696f0e1b046e | 6492:e0b6c88a6650 |
---|---|
2221 case VEH_AIRCRAFT: string = STR_A014_AIRCRAFT_IS_WAITING_IN; break; | 2221 case VEH_AIRCRAFT: string = STR_A014_AIRCRAFT_IS_WAITING_IN; break; |
2222 default: NOT_REACHED(); string = STR_EMPTY; // Set the string to something to avoid a compiler warning | 2222 default: NOT_REACHED(); string = STR_EMPTY; // Set the string to something to avoid a compiler warning |
2223 } | 2223 } |
2224 | 2224 |
2225 SetDParam(0, v->unitnumber); | 2225 SetDParam(0, v->unitnumber); |
2226 AddNewsItem(string, NEWS_FLAGS(NM_SMALL, NF_VIEWPORT|NF_VEHICLE, NT_ADVICE, 0), v->index, 0); | 2226 AddNewsItem(string, NEWS_FLAGS(NM_SMALL, NF_VIEWPORT|NF_VEHICLE, NT_ADVICE, 0), v->index, 0); |
2227 } | 2227 } |
2228 } | 2228 } |
2229 } | 2229 } |
2230 } | 2230 } |
2231 | 2231 |