diff options
author | smatz <smatz@openttd.org> | 2010-02-25 22:59:24 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2010-02-25 22:59:24 +0000 |
commit | 7b1e0a4b67985cbd679fa74493f50320cc08c701 (patch) | |
tree | d36542d7c03313d8ff3a4af503cfdddfd54c2c2a /src | |
parent | 17288d6c8051e7e6e27e791cabfce6673d7d24e9 (diff) | |
download | openttd-7b1e0a4b67985cbd679fa74493f50320cc08c701.tar.xz |
(svn r19260) -Codechange: another minor coding style fix
Diffstat (limited to 'src')
-rw-r--r-- | src/train_cmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/train_cmd.cpp b/src/train_cmd.cpp index 89d661fe2..31c0eccad 100644 --- a/src/train_cmd.cpp +++ b/src/train_cmd.cpp @@ -1640,7 +1640,7 @@ static void ReverseTrainSwapVeh(Train *v, int l, int r) } Swap(a->track, b->track); - Swap(a->direction, b->direction); + Swap(a->direction, b->direction); /* toggle direction */ if (a->track != TRACK_BIT_DEPOT) a->direction = ReverseDir(a->direction); |