diff options
author | frosch <frosch@openttd.org> | 2008-03-06 10:39:26 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2008-03-06 10:39:26 +0000 |
commit | 068952448150b774ea369e20a13a71a3e846ee30 (patch) | |
tree | e5d3a86938a2ac6a3c1821661d029ca596a598ae /src/group.h | |
parent | fe4a6985b2991277ca777e8f32d071370a9761db (diff) | |
download | openttd-068952448150b774ea369e20a13a71a3e846ee30.tar.xz |
(svn r12346) -Fix [FS#1748, FS#1825](r9874, r11872): Remove duplicated and inconsistent code wrt. autoreplace with rules in both vehicles' group and ALL_GROUP.
Diffstat (limited to 'src/group.h')
-rw-r--r-- | src/group.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/group.h b/src/group.h index ca34556eb..2693523ac 100644 --- a/src/group.h +++ b/src/group.h @@ -12,7 +12,7 @@ enum { ALL_GROUP = 0xFFFD, - DEFAULT_GROUP = 0xFFFE, + DEFAULT_GROUP = 0xFFFE, ///< ungrouped vehicles are in this group. INVALID_GROUP = 0xFFFF, }; |