Skip to content

Commit

Permalink
Apple M1: Update AutoUpdate PlatformID
Browse files Browse the repository at this point in the history
This will update the auto update Platform ID to macos-universal. This will
cause the auto updater to download universal builds as updates for all Mac OS
builds. Including previous single architecture builds.
  • Loading branch information
skylersaleh committed May 24, 2021
1 parent abea411 commit 1d847b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/UICommon/AutoUpdate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ static std::string GetPlatformID()
#if defined _WIN32
return "win";
#elif defined __APPLE__
return "macos";
return "macos-universal";
#else
return "unknown";
#endif
Expand Down

0 comments on commit 1d847b6

Please sign in to comment.