summaryrefslogtreecommitdiff
path: root/src/vehicle_gui.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2013-01-23 19:45:47 +0000
committerfrosch <frosch@openttd.org>2013-01-23 19:45:47 +0000
commitf563250c0b9fa051d81481d88dbd8767730703d9 (patch)
tree4d0a0c5f3de3e722d0ba570fe9f8d6b7fe671166 /src/vehicle_gui.cpp
parent8fa3da44c7fea50d698281946cef54290d8747a8 (diff)
downloadopenttd-f563250c0b9fa051d81481d88dbd8767730703d9.tar.xz
(svn r24938) -Fix [FS#5447-ish]: Never put a space between cargo name and subtype.
Diffstat (limited to 'src/vehicle_gui.cpp')
-rw-r--r--src/vehicle_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehicle_gui.cpp b/src/vehicle_gui.cpp
index 970674639..ec523e134 100644
--- a/src/vehicle_gui.cpp
+++ b/src/vehicle_gui.cpp
@@ -342,7 +342,7 @@ static void DrawVehicleRefitWindow(const SubtypeList list[NUM_CARGO], int sel, u
/* If the callback succeeded, draw the cargo suffix. */
if (refit.value != CALLBACK_FAILED && refit.value < 0x400) {
SetDParam(1, GetGRFStringID(refit.engine->GetGRFID(), 0xD000 + refit.value));
- DrawString(r.left + WD_MATRIX_LEFT, r.right - WD_MATRIX_RIGHT, y, STR_JUST_STRING_SPACE_STRING, colour);
+ DrawString(r.left + WD_MATRIX_LEFT, r.right - WD_MATRIX_RIGHT, y, STR_JUST_STRING_STRING, colour);
} else {
DrawString(r.left + WD_MATRIX_LEFT, r.right - WD_MATRIX_RIGHT, y, STR_JUST_STRING, colour);
}