diff options
author | rubidium <rubidium@openttd.org> | 2013-11-25 13:28:08 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2013-11-25 13:28:08 +0000 |
commit | a399fc667ce506abcdcfd853d1ad58f0bb8dbb4f (patch) | |
tree | 3a5bf8042ace5bb2536bcedc858f7df061acaa8d | |
parent | 4b8d9aad5b4359345c79f8f5567db4f88c2d41e1 (diff) | |
download | openttd-a399fc667ce506abcdcfd853d1ad58f0bb8dbb4f.tar.xz |
(svn r26106) -Codechange: document fall through explicitly
-rw-r--r-- | src/depot_gui.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/depot_gui.cpp b/src/depot_gui.cpp index 10de2bece..c677d039d 100644 --- a/src/depot_gui.cpp +++ b/src/depot_gui.cpp @@ -442,6 +442,7 @@ struct DepotWindow : Window { switch (this->type) { case VEH_TRAIN: if (wagon) return MODE_ERROR; + /* FALL THROUGH */ case VEH_ROAD: if (xm <= this->flag_width) return MODE_START_STOP; break; |