mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-17 11:39:11 +00:00
(svn r2952) Querytool output is be 0xAAAA. with leading 0x. Couldn't use # cause that would have written 0X
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user