Replace main xenia redirects with canary

This commit is contained in:
illusion98 2020-01-21 14:53:49 +07:00 committed by illusion
parent d9886ae75e
commit 0c260b5cfa
1 changed files with 2 additions and 2 deletions

View File

@ -308,7 +308,7 @@ bool EmulatorWindow::Initialize() {
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());
@ -558,7 +558,7 @@ void EmulatorWindow::ShowHelpWebsite() { LaunchBrowser(L"https://xenia.jp"); }
void EmulatorWindow::ShowCommitID() {
std::wstring url =
std::wstring(L"https://github.com/xenia-project/xenia/commit/") +
std::wstring(L"https://github.com/xenia-canary/xenia-canary/commit/") +
xe::to_wstring(XE_BUILD_COMMIT) + L"/";
LaunchBrowser(url.c_str());
}