diff options
-rw-r--r-- | src/gui/widgets/widget.h | 6 | ||||
-rw-r--r-- | src/resources/map/mapheights.h | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/src/gui/widgets/widget.h b/src/gui/widgets/widget.h index 3601570cb..2a8cae343 100644 --- a/src/gui/widgets/widget.h +++ b/src/gui/widgets/widget.h @@ -375,8 +375,10 @@ class Widget notfinal : public Widget2 * @see setVisible */ bool isVisible() const A_WARN_UNUSED - { return mVisible == Visible_true && - (!mParent || mParent->isVisible()); } + { + return mVisible == Visible_true && + (!mParent || mParent->isVisible()); + } /** * Sets the base color of the widget. diff --git a/src/resources/map/mapheights.h b/src/resources/map/mapheights.h index 2c5cf845a..43721e817 100644 --- a/src/resources/map/mapheights.h +++ b/src/resources/map/mapheights.h @@ -39,8 +39,10 @@ class MapHeights final : public MemoryCounter void setHeight(const int x, const int y, const uint8_t height); uint8_t getHeight(const int x, const int y) const - { return x < mWidth && y < mHeight ? mTiles[x + y * mWidth] - : CAST_U8(0U); } + { + return x < mWidth && + y < mHeight ? mTiles[x + y * mWidth] : CAST_U8(0U); + } int calcMemoryLocal() const override final; |