From d36a9ce672bcad31b93ee5753a8fb0d3a3def9c3 Mon Sep 17 00:00:00 2001 From: Adrian Frühwirth Date: Fri, 23 Mar 2018 20:40:30 +0100 Subject: JANITORIAL: Fix formatting --- graphics/VectorRendererSpec.cpp | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/graphics/VectorRendererSpec.cpp b/graphics/VectorRendererSpec.cpp index 3f4c314656..c66bb2e9af 100644 --- a/graphics/VectorRendererSpec.cpp +++ b/graphics/VectorRendererSpec.cpp @@ -448,16 +448,16 @@ void colorFill(PixelType *first, PixelType *last, PixelType color) { return; int n = (count + 7) >> 3; switch (count % 8) { - case 0: do { - *first++ = color; // fall through - case 7: *first++ = color; // fall through - case 6: *first++ = color; // fall through - case 5: *first++ = color; // fall through - case 4: *first++ = color; // fall through - case 3: *first++ = color; // fall through - case 2: *first++ = color; // fall through + case 0: do { + *first++ = color; // fall through + case 7: *first++ = color; // fall through + case 6: *first++ = color; // fall through + case 5: *first++ = color; // fall through + case 4: *first++ = color; // fall through + case 3: *first++ = color; // fall through + case 2: *first++ = color; // fall through case 1: *first++ = color; - } while (--n > 0); + } while (--n > 0); } } @@ -487,16 +487,16 @@ void colorFillClip(PixelType *first, PixelType *last, PixelType color, int realX int n = (count + 7) >> 3; switch (count % 8) { - case 0: do { - *first++ = color; // fall through - case 7: *first++ = color; // fall through - case 6: *first++ = color; // fall through - case 5: *first++ = color; // fall through - case 4: *first++ = color; // fall through - case 3: *first++ = color; // fall through - case 2: *first++ = color; // fall through + case 0: do { + *first++ = color; // fall through + case 7: *first++ = color; // fall through + case 6: *first++ = color; // fall through + case 5: *first++ = color; // fall through + case 4: *first++ = color; // fall through + case 3: *first++ = color; // fall through + case 2: *first++ = color; // fall through case 1: *first++ = color; - } while (--n > 0); + } while (--n > 0); } } -- cgit v1.2.3