diff options
author | rubidium <rubidium@openttd.org> | 2009-07-20 13:16:15 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-07-20 13:16:15 +0000 |
commit | 87dba11ca10faa2a41369893fafa4b23eb89e4b9 (patch) | |
tree | 1661f8a213c0c606b66877e49da73f744f10fc4c | |
parent | e3053660c673b0a81691175995ee68d00fac869c (diff) | |
download | openttd-87dba11ca10faa2a41369893fafa4b23eb89e4b9.tar.xz |
(svn r16887) -Fix (r16884): erroneous semicolon.
-rw-r--r-- | src/group_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/group_gui.cpp b/src/group_gui.cpp index 7075d94c5..cead1066e 100644 --- a/src/group_gui.cpp +++ b/src/group_gui.cpp @@ -388,7 +388,7 @@ public: SetDParam(1, owner); SetDParam(2, this->vehicles.Length()); - this->widget[GRP_WIDGET_REPLACE_PROTECTION].data = SPR_GROUP_REPLACE_OFF_TRAIN; + this->vehicle_type; + this->widget[GRP_WIDGET_REPLACE_PROTECTION].data = SPR_GROUP_REPLACE_OFF_TRAIN + this->vehicle_type; } else { const Group *g = Group::Get(this->group_sel); |