diff options
Diffstat (limited to 'src/misc_gui.cpp')
-rw-r--r-- | src/misc_gui.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/misc_gui.cpp b/src/misc_gui.cpp index 9e472b1cf..406776376 100644 --- a/src/misc_gui.cpp +++ b/src/misc_gui.cpp @@ -329,22 +329,12 @@ public: } }; -static void Place_LandInfo(TileIndex tile) +void ShowLandInfo(TileIndex tile) { DeleteWindowById(WC_LAND_INFO, 0); new LandInfoWindow(tile); } -void PlaceLandBlockInfo() -{ - if (_cursor.sprite == SPR_CURSOR_QUERY) { - ResetObjectToPlace(); - } else { - _place_proc = Place_LandInfo; - SetObjectToPlace(SPR_CURSOR_QUERY, PAL_NONE, HT_RECT, WC_MAIN_TOOLBAR, 0); - } -} - /** Widgets for the land info window. */ enum AboutWidgets { AW_SCROLLING_TEXT, ///< The actually scrolling text |