forked from mirror/OpenTTD
(svn r2613) - Truncate savegames, and vehicle-texts in their window.
- Hardcoded width 5 for saves-path...oops :O
This commit is contained in:
11
train_gui.c
11
train_gui.c
@@ -834,10 +834,6 @@ static void TrainViewWndProc(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->u.rail.crash_anim_pos != 0) {
|
||||
str = STR_8863_CRASHED;
|
||||
} else if (v->breakdown_ctr == 1) {
|
||||
@@ -886,8 +882,11 @@ static void TrainViewWndProc(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;
|
||||
|
||||
|
Reference in New Issue
Block a user