Replace main xenia redirects with canary
This commit is contained in:
parent
183ff64551
commit
1d1c54ca6e
|
@ -301,14 +301,14 @@ bool EmulatorWindow::Initialize() {
|
||||||
help_menu->AddChild(MenuItem::Create(
|
help_menu->AddChild(MenuItem::Create(
|
||||||
MenuItem::Type::kString, L"Build commit on GitHub...", [this]() {
|
MenuItem::Type::kString, L"Build commit on GitHub...", [this]() {
|
||||||
std::wstring url =
|
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"/";
|
xe::to_wstring(XE_BUILD_COMMIT) + L"/";
|
||||||
LaunchBrowser(url.c_str());
|
LaunchBrowser(url.c_str());
|
||||||
}));
|
}));
|
||||||
help_menu->AddChild(MenuItem::Create(
|
help_menu->AddChild(MenuItem::Create(
|
||||||
MenuItem::Type::kString, L"Recent changes on GitHub...", [this]() {
|
MenuItem::Type::kString, L"Recent changes on GitHub...", [this]() {
|
||||||
std::wstring url =
|
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_COMMIT) + L"..." +
|
||||||
xe::to_wstring(XE_BUILD_BRANCH);
|
xe::to_wstring(XE_BUILD_BRANCH);
|
||||||
LaunchBrowser(url.c_str());
|
LaunchBrowser(url.c_str());
|
||||||
|
|
Loading…
Reference in New Issue