From fa0459ad93d9a3c663efb0bf782415a152d3da97 Mon Sep 17 00:00:00 2001
From: Jonas Kulla <Nyocurio@gmail.com>
Date: Thu, 15 Jan 2015 11:09:12 +0100
Subject: [PATCH] Fix code formatting

---
 src/bitmap.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/bitmap.cpp b/src/bitmap.cpp
index 8fdf118..ced85fd 100644
--- a/src/bitmap.cpp
+++ b/src/bitmap.cpp
@@ -997,7 +997,8 @@ void Bitmap::drawText(const IntRect &rect, const char *str, int align)
 
 	/* outline using TTF_Outline and blending it together with SDL_BlitSurface
 	 * FIXME: outline is forced to have the same opacity as the font color */
-	if (p->font->getOutline()) {
+	if (p->font->getOutline())
+	{
 		SDL_Color co = outColor.toSDLColor();
 		co.a = 255;
 		SDL_Surface *outline;