From be6c0584240caf420b2475a0be036391e842e8af Mon Sep 17 00:00:00 2001 From: alberth Date: Sat, 24 Jul 2010 10:14:39 +0000 Subject: (svn r20211) -Codechange: Indented code should have curly braces around it. --- src/gfx.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/gfx.cpp') diff --git a/src/gfx.cpp b/src/gfx.cpp index e394ad64b..4180be1d6 100644 --- a/src/gfx.cpp +++ b/src/gfx.cpp @@ -1757,8 +1757,9 @@ static void SwitchAnimatedCursor() void CursorTick() { - if (_cursor.animate_timeout != 0 && --_cursor.animate_timeout == 0) + if (_cursor.animate_timeout != 0 && --_cursor.animate_timeout == 0) { SwitchAnimatedCursor(); + } } void SetMouseCursor(CursorID sprite, PaletteID pal) -- cgit v1.2.3-54-g00ecf