summaryrefslogtreecommitdiff
path: root/misc_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 /misc_gui.c
parent9cde836d085ddfb00ee254e110c5bc5ab0582a46 (diff)
downloadopenttd-0c325e10dab3223cc5bef75e2bd0d1719457a740.tar.xz
(svn r2057) Add InlineString() to make _userstring construction a bit cleaner.
Diffstat (limited to 'misc_gui.c')
-rw-r--r--misc_gui.c20
1 files changed, 6 insertions, 14 deletions
diff --git a/misc_gui.c b/misc_gui.c
index 4811a8228..0b35bbcc3 100644
--- a/misc_gui.c
+++ b/misc_gui.c
@@ -669,28 +669,20 @@ static void DrawStationCoverageText(const uint *accepts, int str_x, int str_y, u
char *b;
b = _userstring;
- b[0] = 0x81;
- b[1] = STR_000D_ACCEPTS;
- b[2] = STR_000D_ACCEPTS >> 8;
- b += 3;
+ b = InlineString(b, STR_000D_ACCEPTS);
for(i=0; i!=NUM_CARGO; i++,mask>>=1) {
if (accepts[i] >= 8 && (mask&1) ) {
StringID id = _cargoc.names_s[i];
- b[0] = 0x81;
- b[1] = (byte)(id & 255);
- b[2] = (byte)(id >> 8);
- b[3] = ',';
- b[4] = ' ';
- b += 5;
+ b = InlineString(b, id);
+ *b++ = ',';
+ *b++ = ' ';
}
}
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;
}