summaryrefslogtreecommitdiff
path: root/misc_gui.c
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2005-09-14 19:22:06 +0000
committerDarkvater <darkvater@openttd.org>2005-09-14 19:22:06 +0000
commitdb31fe8e157acaa1246238109ec9e94f0e0b70c0 (patch)
tree74741eb55fe4d217e1ed689a93e77021e2294e7a /misc_gui.c
parent2131f68ae2c65799f2ce82ee84c7022264efa469 (diff)
downloadopenttd-db31fe8e157acaa1246238109ec9e94f0e0b70c0.tar.xz
(svn r2952) Querytool output is be 0xAAAA. with leading 0x. Couldn't use # cause that would have written 0X
Diffstat (limited to 'misc_gui.c')
-rw-r--r--misc_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc_gui.c b/misc_gui.c
index 356e9cb7c..6383b2ec4 100644
--- a/misc_gui.c
+++ b/misc_gui.c
@@ -66,7 +66,7 @@ static void LandInfoWndProc(Window *w, WindowEvent *e)
}
DrawStringCentered(140, 38, str, 0);
- snprintf(_userstring, lengthof(_userstring), "%.4X", lid->tile);
+ snprintf(_userstring, lengthof(_userstring), "0x%.4X", lid->tile);
SetDParam(0, TileX(lid->tile));
SetDParam(1, TileY(lid->tile));
SetDParam(2, STR_SPEC_USERSTRING);