summaryrefslogtreecommitdiff
path: root/src/dummy_land.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-01-02 22:42:05 +0000
committerrubidium <rubidium@openttd.org>2009-01-02 22:42:05 +0000
commit1357b0a4c2c9cb2cf6d81a2cbc3e851d25c6c735 (patch)
treef69215ca7fcf8c6741e37e05e4a9c67f0e8e201a /src/dummy_land.cpp
parent2086fbcf174b20758cbd9ebb94b3985e2b25ee29 (diff)
downloadopenttd-1357b0a4c2c9cb2cf6d81a2cbc3e851d25c6c735.tar.xz
(svn r14789) -Feature: allow scrolling with the left mouse button pressed (if enabled). Primarily useful for systems with touch screen (aapo)
Diffstat (limited to 'src/dummy_land.cpp')
-rw-r--r--src/dummy_land.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dummy_land.cpp b/src/dummy_land.cpp
index 67eac6214..de244f99b 100644
--- a/src/dummy_land.cpp
+++ b/src/dummy_land.cpp
@@ -54,9 +54,10 @@ static void TileLoop_Dummy(TileIndex tile)
/* not used */
}
-static void ClickTile_Dummy(TileIndex tile)
+static bool ClickTile_Dummy(TileIndex tile)
{
/* not used */
+ return false;
}
static void ChangeTileOwner_Dummy(TileIndex tile, Owner old_owner, Owner new_owner)