diff options
| author | Spp <none@none> | 2010-04-07 19:13:19 +0200 |
|---|---|---|
| committer | Spp <none@none> | 2010-04-07 19:13:19 +0200 |
| commit | 2e127f7a30706dc1d40c65de22ff02851732da24 (patch) | |
| tree | 91f7e8033e9296fdd8dbb2d5a761c9980cc36f18 /src/game/Vehicle.cpp | |
| parent | 182e9a20b107c0d824e8a0bd1cf8f7eceb2b4ce5 (diff) | |
Code style (game + scripts only):
"while(" --> "while ("
--HG--
branch : trunk
Diffstat (limited to 'src/game/Vehicle.cpp')
| -rw-r--r-- | src/game/Vehicle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Vehicle.cpp b/src/game/Vehicle.cpp index bd81199a375..5e860257d2e 100644 --- a/src/game/Vehicle.cpp +++ b/src/game/Vehicle.cpp @@ -173,7 +173,7 @@ int8 Vehicle::GetNextEmptySeat(int8 seatId, bool next) const { SeatMap::const_iterator seat = m_Seats.find(seatId); if(seat == m_Seats.end()) return -1; - while(seat->second.passenger || !seat->second.seatInfo->IsUsable()) + while (seat->second.passenger || !seat->second.seatInfo->IsUsable()) { if(next) { |
