dolphin/Source/Core/MacUpdater/main.m

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
628 B
Mathematica
Raw Normal View History

2019-01-18 14:31:14 +00:00
// Copyright 2019 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2019-01-18 14:31:14 +00:00
#include <Cocoa/Cocoa.h>
// Refer to docs/autoupdate_overview.md for a detailed overview of the autoupdate process
2019-01-18 14:31:14 +00:00
int main(int argc, const char** argv)
{
if (argc == 1)
{
NSAlert* alert = [[[NSAlert alloc] init] autorelease];
[alert setMessageText:@"This updater is not meant to be launched directly."];
[alert setAlertStyle:NSAlertStyleWarning];
[alert setInformativeText:@"Configure Auto-Update in Dolphin's settings instead."];
[alert runModal];
return 1;
}
return NSApplicationMain(argc, argv);
}