From 1d1c54ca6e762106bc727fbece54d030f9c9ecbc Mon Sep 17 00:00:00 2001 From: illusion98 <37698908+illusion98@users.noreply.github.com> Date: Tue, 21 Jan 2020 14:53:49 +0700 Subject: [PATCH] Replace main xenia redirects with canary --- src/xenia/app/emulator_window.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xenia/app/emulator_window.cc b/src/xenia/app/emulator_window.cc index 7bb9ef349..a15d33f8c 100644 --- a/src/xenia/app/emulator_window.cc +++ b/src/xenia/app/emulator_window.cc @@ -301,14 +301,14 @@ bool EmulatorWindow::Initialize() { help_menu->AddChild(MenuItem::Create( MenuItem::Type::kString, L"Build commit on GitHub...", [this]() { std::wstring url = - std::wstring(L"https://github.com/xenia-project/xenia/tree/") + + std::wstring(L"https://github.com/xenia-canary/xenia-canary/commit/") + xe::to_wstring(XE_BUILD_COMMIT) + L"/"; LaunchBrowser(url.c_str()); })); help_menu->AddChild(MenuItem::Create( MenuItem::Type::kString, L"Recent changes on GitHub...", [this]() { std::wstring url = - std::wstring(L"https://github.com/xenia-project/xenia/compare/") + + std::wstring(L"https://github.com/xenia-canary/xenia-canary/compare/") + xe::to_wstring(XE_BUILD_COMMIT) + L"..." + xe::to_wstring(XE_BUILD_BRANCH); LaunchBrowser(url.c_str());