summaryrefslogtreecommitdiff
path: root/src/depot_gui.cpp
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2008-08-02 23:30:50 +0000
committerglx <glx@openttd.org>2008-08-02 23:30:50 +0000
commit87c359989528e3b773bd7f345aa9ccf4b3bf22f3 (patch)
tree7b0f8db83bed7ca1cbdc7f2348268658902275e5 /src/depot_gui.cpp
parentcc48f3d6f9f25e03446c1ceb119c0bbdf047d389 (diff)
downloadopenttd-87c359989528e3b773bd7f345aa9ccf4b3bf22f3.tar.xz
(svn r13968) -Fix (r13923): 'cast from pointer to integer of different size' warning
Diffstat (limited to 'src/depot_gui.cpp')
-rw-r--r--src/depot_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/depot_gui.cpp b/src/depot_gui.cpp
index 47676bff8..fe4490584 100644
--- a/src/depot_gui.cpp
+++ b/src/depot_gui.cpp
@@ -888,7 +888,7 @@ struct DepotWindow : Window {
/* Show tooltip window */
uint64 args[2];
args[0] = (whole_chain ? num : v->engine_type);
- args[1] = (uint64)details;
+ args[1] = (uint64)(size_t)details;
GuiShowTooltips(whole_chain ? STR_DEPOT_VEHICLE_TOOLTIP_CHAIN : STR_DEPOT_VEHICLE_TOOLTIP, 2, args);
} else {
/* Show tooltip help */