From 3601d36955f72323453a2fb1d1d7b784734c38cb Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Mon, 1 Aug 2022 17:05:59 +0200 Subject: [PATCH] Fix macOS build --- Source/Engine/Platform/Mac/MacWindow.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/Platform/Mac/MacWindow.h b/Source/Engine/Platform/Mac/MacWindow.h index d3d20ec9a..65432fd07 100644 --- a/Source/Engine/Platform/Mac/MacWindow.h +++ b/Source/Engine/Platform/Mac/MacWindow.h @@ -37,7 +37,7 @@ public: void Restore() override; bool IsClosed() const override; bool IsForegroundWindow() const override; - void BringToFront(bool force) override; + void BringToFront(bool force = false) override; void SetClientBounds(const Rectangle& clientArea) override; void SetPosition(const Float2& position) override; Float2 GetPosition() const override;