summaryrefslogtreecommitdiff
path: root/src/vehicle_gui.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2009-05-22 19:47:26 +0000
committerfrosch <frosch@openttd.org>2009-05-22 19:47:26 +0000
commit09d64ff79dfb8dd52355fe269a582fe75b2615e0 (patch)
treef7763a70cff0fa55636b71f06cc14ad253377248 /src/vehicle_gui.cpp
parent74ea34ca669b5027003a6c760c59903b69ddbee8 (diff)
downloadopenttd-09d64ff79dfb8dd52355fe269a582fe75b2615e0.tar.xz
(svn r16386) -Codechange: Move ShowAdditionalText() to build_vehicle_gui and make it static.
Diffstat (limited to 'src/vehicle_gui.cpp')
-rw-r--r--src/vehicle_gui.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/vehicle_gui.cpp b/src/vehicle_gui.cpp
index 63ca667c4..14b9ae426 100644
--- a/src/vehicle_gui.cpp
+++ b/src/vehicle_gui.cpp
@@ -459,20 +459,6 @@ void ShowVehicleRefitWindow(const Vehicle *v, VehicleOrderID order, Window *pare
w->parent = parent;
}
-/** Display additional text from NewGRF in the purchase information window */
-uint ShowAdditionalText(int left, int right, int y, EngineID engine)
-{
- uint16 callback = GetVehicleCallback(CBID_VEHICLE_ADDITIONAL_TEXT, 0, 0, engine, NULL);
- if (callback == CALLBACK_FAILED) return y;
-
- /* STR_BLACK_STRING is used to start the string with {BLACK} */
- SetDParam(0, GetGRFStringID(GetEngineGRFID(engine), 0xD000 + callback));
- PrepareTextRefStackUsage(0);
- uint result = DrawStringMultiLine(left, right, y, INT32_MAX, STR_BLACK_STRING);
- StopTextRefStackUsage();
- return result;
-}
-
/** Display list of cargo types of the engine, for the purchase information window */
uint ShowRefitOptionsList(int left, int right, int y, EngineID engine)
{