summaryrefslogtreecommitdiff
path: root/station_gui.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-03-25 11:32:58 +0000
committertron <tron@openttd.org>2005-03-25 11:32:58 +0000
commit0c325e10dab3223cc5bef75e2bd0d1719457a740 (patch)
tree0e7bd63c45044b1b65e883fd68ab18c71a309837 /station_gui.c
parent9cde836d085ddfb00ee254e110c5bc5ab0582a46 (diff)
downloadopenttd-0c325e10dab3223cc5bef75e2bd0d1719457a740.tar.xz
(svn r2057) Add InlineString() to make _userstring construction a bit cleaner.
Diffstat (limited to 'station_gui.c')
-rw-r--r--station_gui.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/station_gui.c b/station_gui.c
index 702351c14..b98afe617 100644
--- a/station_gui.c
+++ b/station_gui.c
@@ -401,27 +401,21 @@ static void DrawStationViewWindow(Window *w)
char *b;
b = _userstring;
- b[0] = 0x81;
- b[1] = STR_000C_ACCEPTS;
- b[2] = STR_000C_ACCEPTS >> 8;
- b += 3;
+ b = InlineString(b, STR_000C_ACCEPTS);
for(i=0; i!=NUM_CARGO; i++) {
if ((b - _userstring) + 5 > USERSTRING_LEN - 1)
break;
if (st->goods[i].waiting_acceptance & 0x8000) {
- b[0] = 0x81;
- WRITE_LE_UINT16(b+1, _cargoc.names_s[i]);
- WRITE_LE_UINT16(b+3, 0x202C);
- b += 5;
+ b = InlineString(b, _cargoc.names_s[i]);
+ WRITE_LE_UINT16(b, 0x202C);
+ b += 2;
}
}
if (b == &_userstring[3]) {
- b[0] = 0x81;
- b[1] = (char)STR_00D0_NOTHING;
- b[2] = STR_00D0_NOTHING >> 8;
- b[3] = 0;
+ b = InlineString(b, STR_00D0_NOTHING);
+ *b++ = '\0';
} else {
b[-2] = 0;
}