summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortruebrain <truebrain@openttd.org>2011-11-23 16:29:34 +0000
committertruebrain <truebrain@openttd.org>2011-11-23 16:29:34 +0000
commite83c82045fe60c6962226e9800c2dd3c9d6c239c (patch)
tree7f3d0c717cfc07546114af544603bb536aec29fd /src
parent3008ded077559a33796d39638ab7012391fbf163 (diff)
downloadopenttd-e83c82045fe60c6962226e9800c2dd3c9d6c239c.tar.xz
(svn r23307) -Revert (r23306): committed one file too many :s
Diffstat (limited to 'src')
-rw-r--r--src/ai/api/ai_cargo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ai/api/ai_cargo.cpp b/src/ai/api/ai_cargo.cpp
index 73961c733..f77fe6dfb 100644
--- a/src/ai/api/ai_cargo.cpp
+++ b/src/ai/api/ai_cargo.cpp
@@ -22,7 +22,7 @@
/* static */ bool AICargo::IsValidTownEffect(TownEffect towneffect_type)
{
- return (towneffect_type >= (::TownEffect)TE_BEGIN && towneffect_type < (::TownEffect)TE_END);
+ return (towneffect_type >= (TownEffect)TE_BEGIN && towneffect_type < (TownEffect)TE_END);
}
/* static */ char *AICargo::GetCargoLabel(CargoID cargo_type)