Index: openttd-1.0.2/src/vehicle_gui.cpp
===================================================================
--- openttd-1.0.2.orig/src/vehicle_gui.cpp	2010-06-19 18:35:37.000000000 +0200
+++ openttd-1.0.2/src/vehicle_gui.cpp	2010-06-28 23:00:12.000000000 +0200
@@ -2086,7 +2086,12 @@
 			case WID_VV_CENTER_MAIN_VIEW: {// center main view
 				const Window *mainwindow = FindWindowById(WC_MAIN_WINDOW, 0);
 				/* code to allow the main window to 'follow' the vehicle if the ctrl key is pressed */
+#if defined(MAEMO)
+				/* Maemo has no "Ctrl" key, so we default to follow */
+				if (mainwindow->viewport->zoom == ZOOM_LVL_NORMAL) {
+#else
 				if (_ctrl_pressed && mainwindow->viewport->zoom <= ZOOM_LVL_OUT_4X) {
+#endif
 					mainwindow->viewport->follow_vehicle = v->index;
 				} else {
 					ScrollMainWindowTo(v->x_pos, v->y_pos, v->z_pos);
