diff options
author | belugas <belugas@openttd.org> | 2006-06-28 17:46:55 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2006-06-28 17:46:55 +0000 |
commit | d2b3e9b2a1542804187e32c842444aa752a8b9bd (patch) | |
tree | 29307696c8b89dc4ac77c0028ef8f20c1cf15671 | |
parent | 08c50b7441d6d5377ea815330f9c3c9554ee85e9 (diff) | |
download | openttd-d2b3e9b2a1542804187e32c842444aa752a8b9bd.tar.xz |
(svn r5404) Fix (r5391) : Yet another typo. Nothing specatular :)
Spotted by gigajum
-rw-r--r-- | train_gui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/train_gui.c b/train_gui.c index 07aabfdff..34e02a3b6 100644 --- a/train_gui.c +++ b/train_gui.c @@ -1506,7 +1506,7 @@ static void PlayerTrainsWndProc(Window *w, WindowEvent *e) break; case 10: - if (IsWindowOfPrototype(w, _player_trains_widgets)) break; + if (!IsWindowOfPrototype(w, _player_trains_widgets)) break; ShowReplaceVehicleWindow(VEH_Train); break; |