aboutsummaryrefslogtreecommitdiff
path: root/graphics/VectorRenderer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/VectorRenderer.cpp')
-rw-r--r--graphics/VectorRenderer.cpp72
1 files changed, 36 insertions, 36 deletions
diff --git a/graphics/VectorRenderer.cpp b/graphics/VectorRenderer.cpp
index 2616664841..46e1e975d5 100644
--- a/graphics/VectorRenderer.cpp
+++ b/graphics/VectorRenderer.cpp
@@ -84,26 +84,26 @@ void VectorRenderer::stepGetPositions(const DrawStep &step, const Common::Rect &
if (!step.autoWidth) {
in_w = step.w == -1 ? area.height() : step.w;
- switch(step.xAlign) {
- case Graphics::DrawStep::kVectorAlignManual:
- if (step.x >= 0) in_x = area.left + step.x;
- else in_x = area.left + area.width() + step.x; // value relative to the opposite corner.
- break;
-
- case Graphics::DrawStep::kVectorAlignCenter:
- in_x = area.left + (area.width() / 2) - (in_w / 2);
- break;
-
- case Graphics::DrawStep::kVectorAlignLeft:
- in_x = area.left;
- break;
-
- case Graphics::DrawStep::kVectorAlignRight:
- in_x = area.left + area.width() - in_w;
- break;
-
- default:
- error("Vertical alignment in horizontal data.");
+ switch (step.xAlign) {
+ case Graphics::DrawStep::kVectorAlignManual:
+ if (step.x >= 0) in_x = area.left + step.x;
+ else in_x = area.left + area.width() + step.x; // value relative to the opposite corner.
+ break;
+
+ case Graphics::DrawStep::kVectorAlignCenter:
+ in_x = area.left + (area.width() / 2) - (in_w / 2);
+ break;
+
+ case Graphics::DrawStep::kVectorAlignLeft:
+ in_x = area.left;
+ break;
+
+ case Graphics::DrawStep::kVectorAlignRight:
+ in_x = area.left + area.width() - in_w;
+ break;
+
+ default:
+ error("Vertical alignment in horizontal data.");
}
} else {
in_x = area.left;
@@ -113,26 +113,26 @@ void VectorRenderer::stepGetPositions(const DrawStep &step, const Common::Rect &
if (!step.autoHeight) {
in_h = step.h == -1 ? area.width() : step.h;
- switch(step.yAlign) {
- case Graphics::DrawStep::kVectorAlignManual:
- if (step.y >= 0) in_y = area.top + step.y;
- else in_y = area.top + area.height() + step.y; // relative
- break;
+ switch (step.yAlign) {
+ case Graphics::DrawStep::kVectorAlignManual:
+ if (step.y >= 0) in_y = area.top + step.y;
+ else in_y = area.top + area.height() + step.y; // relative
+ break;
- case Graphics::DrawStep::kVectorAlignCenter:
- in_y = area.top + (area.height() / 2) - (in_h / 2);
- break;
+ case Graphics::DrawStep::kVectorAlignCenter:
+ in_y = area.top + (area.height() / 2) - (in_h / 2);
+ break;
- case Graphics::DrawStep::kVectorAlignTop:
- in_y = area.top;
- break;
+ case Graphics::DrawStep::kVectorAlignTop:
+ in_y = area.top;
+ break;
- case Graphics::DrawStep::kVectorAlignBottom:
- in_y = area.top + area.height() - in_h;
- break;
+ case Graphics::DrawStep::kVectorAlignBottom:
+ in_y = area.top + area.height() - in_h;
+ break;
- default:
- error("Horizontal alignment in vertical data.");
+ default:
+ error("Horizontal alignment in vertical data.");
}
} else {
in_y = area.top;