From ce919e8c719f0f698ac86dcaa528368316f2e52d Mon Sep 17 00:00:00 2001 From: rubidium Date: Thu, 8 Mar 2007 16:27:54 +0000 Subject: (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code). --- src/settings_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/settings_gui.cpp') diff --git a/src/settings_gui.cpp b/src/settings_gui.cpp index ce9b26aea..53cf59575 100644 --- a/src/settings_gui.cpp +++ b/src/settings_gui.cpp @@ -82,7 +82,7 @@ static inline bool RoadVehiclesAreBuilt() const Vehicle* v; FOR_ALL_VEHICLES(v) { - if (v->type == VEH_Road) return true; + if (v->type == VEH_ROAD) return true; } return false; } -- cgit v1.2.3-54-g00ecf