From 97559a9df9e1255f6d7caa2c1851f35c10f28841 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Mon, 20 Feb 2006 21:49:31 +0000 Subject: (svn r3631) - 2cc: Remove use of some temporary variables and perform minor optimization in the form of the ternary operator. --- aircraft_gui.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'aircraft_gui.c') diff --git a/aircraft_gui.c b/aircraft_gui.c index b947854e5..3a78c2134 100644 --- a/aircraft_gui.c +++ b/aircraft_gui.c @@ -64,10 +64,8 @@ void DrawAircraftPurchaseInfo(int x, int y, EngineID engine_number) static void DrawAircraftImage(const Vehicle *v, int x, int y, VehicleID selection) { - int image = GetAircraftImage(v, 6); - uint32 ormod = GetVehiclePalette(v); - if (v->vehstatus & VS_CRASHED) ormod = PALETTE_CRASH; - DrawSprite(image | ormod, x + 25, y + 10); + PalSpriteID pal = (v->vehstatus & VS_CRASHED) ? PALETTE_CRASH : GetVehiclePalette(v); + DrawSprite(GetAircraftImage(v, 6) | pal, x + 25, y + 10); if (v->subtype == 0) DrawSprite(SPR_ROTOR_STOPPED, x + 25, y + 5); if (v->index == selection) { DrawFrameRect(x - 1, y - 1, x + 58, y + 21, 0xF, FR_BORDERONLY); -- cgit v1.2.3-54-g00ecf