From 947460706906036c268ae71e73e71c9183b76a65 Mon Sep 17 00:00:00 2001 From: Czipperz Date: Tue, 5 Jul 2016 01:49:39 -0500 Subject: [PATCH] Fix misleading indentation in Image.cc --- Source/Image.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Image.cc b/Source/Image.cc index 9d14e43..8d3f461 100644 --- a/Source/Image.cc +++ b/Source/Image.cc @@ -199,7 +199,8 @@ bool Image::Fill (const Color& color) // Loop data and fill contents uint32 argb = color.GetARGB(); for (uint32 i = 0; i < mLength; ++i) - mData[i] = argb; return true; + mData[i] = argb; + return true; } ////////////////////////////////////////////////////////////////////////////////