From bbe2bd5fec7f7857a427c7f8d0fd772d4b72c5e8 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Thu, 16 Mar 2023 02:44:14 -0400 Subject: [PATCH] MacUI: Add stub implementation of UI::IsTestMode() --- Source/Core/MacUpdater/MacUI.mm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Source/Core/MacUpdater/MacUI.mm b/Source/Core/MacUpdater/MacUI.mm index f60199034a..55564805fe 100644 --- a/Source/Core/MacUpdater/MacUI.mm +++ b/Source/Core/MacUpdater/MacUI.mm @@ -139,6 +139,12 @@ void UI::Init() { } +// test-updater.py only works on Windows. +bool UI::IsTestMode() +{ + return false; +} + bool Platform::VersionCheck(const std::vector& to_update, const std::string& install_base_path, const std::string& temp_dir) {