From c5b0da7d1318b7380a0a4f053bc51494e433130b Mon Sep 17 00:00:00 2001 From: Theodore Dubois Date: Sun, 9 Feb 2020 17:21:36 -0800 Subject: [PATCH] UI: Add missing function declaration This broke the build, but due to an issue with CI this was not caught by CI. --- UI/platform.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/UI/platform.hpp b/UI/platform.hpp index 99a90def8..f1ab78191 100644 --- a/UI/platform.hpp +++ b/UI/platform.hpp @@ -65,4 +65,5 @@ RunOnceMutex GetRunOnceMutex(bool &already_running); #ifdef __APPLE__ void EnableOSXVSync(bool enable); void EnableOSXDockIcon(bool enable); +void InstallNSApplicationSubclass(); #endif