summaryrefslogtreecommitdiff
path: root/src/viewport.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-07-24 17:01:23 +0000
committerrubidium <rubidium@openttd.org>2007-07-24 17:01:23 +0000
commit59d33d0f7ce8210b1fdabc733fd8dbc7a1f18d4b (patch)
tree08ce082e1855582f3c9d1c228a0928e71c054c80 /src/viewport.h
parent9c9fc1a79ef08d1c3822bc7a4a1373d84dbfa70b (diff)
downloadopenttd-59d33d0f7ce8210b1fdabc733fd8dbc7a1f18d4b.tar.xz
(svn r10673) -Cleanup: some assorted style cleanups. Primarily type* var -> type *var.
Diffstat (limited to 'src/viewport.h')
-rw-r--r--src/viewport.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/viewport.h b/src/viewport.h
index 528253b7a..6a4b4b0bc 100644
--- a/src/viewport.h
+++ b/src/viewport.h
@@ -41,7 +41,7 @@ void HandleZoomMessage(Window *w, const ViewPort *vp, byte widget_zoom_in, byte
static inline void MaxZoomInOut(int how, Window *w)
{
- while (DoZoomInOutWindow(how, w) ) {};
+ while (DoZoomInOutWindow(how, w)) {};
}
void OffsetGroundSprite(int x, int y);