From f24bcb8bc7caa6e6b1314d300b47308a035bc4f0 Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Sun, 13 Jun 2021 19:32:43 -0700 Subject: [PATCH] ui: Wiki is retired now, update URLs --- ui/xemu-hud.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/xemu-hud.cc b/ui/xemu-hud.cc index bb93ee4a34..1e1ad31561 100644 --- a/ui/xemu-hud.cc +++ b/ui/xemu-hud.cc @@ -751,7 +751,7 @@ public: ImGui::Dummy(ImVec2(0.0f, ImGui::GetStyle().WindowPadding.y)); if (ImGui::Button("Help", ImVec2(120*g_ui_scale, 0))) { - xemu_open_web_browser("https://github.com/mborgerson/xemu/wiki#getting-started"); + xemu_open_web_browser("https://xemu.app/docs/getting-started/"); } ImGui::SameLine(); @@ -1108,7 +1108,7 @@ public: ImGui::Dummy(ImVec2(0.0f, ImGui::GetStyle().WindowPadding.y)); if (ImGui::Button("Help", ImVec2(120*g_ui_scale, 0))) { - xemu_open_web_browser("https://github.com/mborgerson/xemu/wiki/Networking"); + xemu_open_web_browser("https://xemu.app/docs/networking/"); } ImGui::SameLine(); @@ -2098,7 +2098,7 @@ static void ShowMainMenu() { if (ImGui::MenuItem("Help", NULL)) { - xemu_open_web_browser("https://github.com/mborgerson/xemu/wiki"); + xemu_open_web_browser("https://xemu.app/docs/getting-started/"); } ImGui::MenuItem("Report Compatibility...", NULL, &compatibility_reporter_window.is_open);