From f37174f0e23cd4c200ab1c38af3a712a4789f0f8 Mon Sep 17 00:00:00 2001 From: glx Date: Thu, 17 Jan 2008 16:41:02 +0000 Subject: (svn r11895) -Fix (r11875): for once MSVC warns for a good reason --- src/aircraft_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/aircraft_cmd.cpp b/src/aircraft_cmd.cpp index f8122e33f..702661d65 100644 --- a/src/aircraft_cmd.cpp +++ b/src/aircraft_cmd.cpp @@ -1565,7 +1565,7 @@ static inline bool CheckSendAircraftToHangarForReplacement(const Vehicle *v) /* There is no autoreplace assigned to this EngineID so we will set it to renew to the same type if needed */ new_engine = v->engine_type; - if((p->engine_renew && v->age - v->max_age) < p->engine_renew_months * 30) { + if(p->engine_renew && (v->age - v->max_age) < p->engine_renew_months * 30) { /* No need to replace the aircraft */ return false; } -- cgit v1.2.3-54-g00ecf