summaryrefslogtreecommitdiff
path: root/aircraft_gui.c
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2005-07-17 17:15:33 +0000
committerDarkvater <Darkvater@openttd.org>2005-07-17 17:15:33 +0000
commit3f8ba76b2fcba7a8b25eebca5ac24a723574dc59 (patch)
treeb618eaf70bf02a242a3d2bb8f7a4a7add02e2f29 /aircraft_gui.c
parentcddc52fb8fa5e8a4033b2a4880141f81b01742d2 (diff)
downloadopenttd-3f8ba76b2fcba7a8b25eebca5ac24a723574dc59.tar.xz
(svn r2613) - Truncate savegames, and vehicle-texts in their window.
- Hardcoded width 5 for saves-path...oops :O
Diffstat (limited to 'aircraft_gui.c')
-rw-r--r--aircraft_gui.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/aircraft_gui.c b/aircraft_gui.c
index 33bbef5ed..6d41b147c 100644
--- a/aircraft_gui.c
+++ b/aircraft_gui.c
@@ -523,10 +523,6 @@ static void AircraftViewWndProc(Window *w, WindowEvent *e)
SetDParam(1, v->unitnumber);
DrawWindowWidgets(w);
- /* draw the flag */
- DrawSprite(v->vehstatus & VS_STOPPED ? 0xC12 : 0xC13, 2,
- w->widget[5].top + 1);
-
if (v->vehstatus & VS_CRASHED) {
str = STR_8863_CRASHED;
} else if (v->vehstatus & VS_STOPPED) {
@@ -559,8 +555,11 @@ static void AircraftViewWndProc(Window *w, WindowEvent *e)
}
}
- DrawStringCentered((w->widget[5].right - w->widget[5].left) / 2,
- w->widget[5].top + 1, str, 0);
+ /* draw the flag plus orders */
+ { int w_width = w->widget[5].right - w->widget[5].left;
+ DrawSprite(v->vehstatus & VS_STOPPED ? 0xC12 : 0xC13, 2, w->widget[5].top + 1);
+ DrawStringCenteredTruncated(w_width / 2 + 6, w->widget[5].top + 1, str, 0, w_width - 8);
+ }
DrawWindowViewport(w);
} break;