summaryrefslogtreecommitdiff
path: root/src/main_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-01-09 22:56:28 +0000
committerrubidium <rubidium@openttd.org>2009-01-09 22:56:28 +0000
commitc0e7434f3815e73a28e1cfe9a9b0d4eb4bf6d40b (patch)
tree378bc97d52ab0658bfed8695d1ce2f01bf572802 /src/main_gui.cpp
parent054787f08252150eac44afe15d413a478b00154a (diff)
downloadopenttd-c0e7434f3815e73a28e1cfe9a9b0d4eb4bf6d40b.tar.xz
(svn r14944) -Cleanup: add spaces around some operators
Diffstat (limited to 'src/main_gui.cpp')
-rw-r--r--src/main_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main_gui.cpp b/src/main_gui.cpp
index 8fc7a4ea0..c2e9255c9 100644
--- a/src/main_gui.cpp
+++ b/src/main_gui.cpp
@@ -180,7 +180,7 @@ void ZoomInOrOutToCursorWindow(bool in, Window *w)
if ((in && vp->zoom == ZOOM_LVL_MIN) || (!in && vp->zoom == ZOOM_LVL_MAX))
return;
- Point pt = GetTileZoomCenterWindow(in,w);
+ Point pt = GetTileZoomCenterWindow(in, w);
if (pt.x != -1) {
ScrollWindowTo(pt.x, pt.y, w, true);